Codinfy MCP

Codinfy MCP

MCP server that connects AI agents to Codinfy platform APIs for validating licenses, creating checkouts, listing products, tracking analytics, managing OAuth identity, and handling ad placements.

Category
Visit Server

README

@codinfy/mcp β€” Codinfy Public MCP Server

Official Model Context Protocol server for Codinfy. Connect your AI agent (Claude Code, Codex, Cursor, Continue, Cline, Windsurf) to the Codinfy platform to validate licenses, create checkouts, list products, track events, fetch brand tokens, manage OAuth metadata, configure ads, and more.

npm version License: MIT


Status

🚧 v0.1.0 β€” scaffold. Tool implementations land in AGENT-44. Track progress at docs.codinfy.com/mcp.


What is this?

The Model Context Protocol (MCP) is an open standard that lets AI agents call external tools through a well-defined transport. This package implements the public Codinfy MCP server: a thin TypeScript layer that exposes Codinfy's public APIs as MCP tools.

It is the tool any third-party developer, vendor, or agency uses when they want their agent to talk to Codinfy.

Companion projects

Repo Purpose License
codinfy-mcp (this) Public MCP for Codinfy API consumers MIT
codix-build-mcp Codix Build MCP β€” scaffold projects with AI agents using Smart Context Mode MIT
codinfy-mcp-internal Private MCP for Codinfy team agents only proprietary

Install

npm install -g @codinfy/mcp
# or
npx -y @codinfy/mcp

Configure your agent

Claude Code / Claude Desktop

~/.claude/mcp.json (or claude_desktop_config.json):

{
  "mcpServers": {
    "codinfy": {
      "command": "npx",
      "args": ["-y", "@codinfy/mcp"],
      "env": {
        "CODINFY_API_KEY": "pk_live_xxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor

Settings β†’ Cursor β†’ MCP β†’ New Server:

{
  "name": "codinfy",
  "command": "npx",
  "args": ["-y", "@codinfy/mcp"],
  "env": { "CODINFY_API_KEY": "pk_live_xxxxxxxxxxxxxxxxx" }
}

Codex / Continue / Cline / Windsurf

See docs.codinfy.com/mcp/clients.


Get an API key

Log in at codinfy.com/admin/parametres/api-s and create a key:

  • pk_live_… β€” production
  • pk_sandbox_… β€” sandbox (free tier, rate-limited)

Keys are scoped (licenses:read, payments:write, brand:read, …) and rotateable from the same UI.


Tools (16 β€” to be implemented in AGENT-44)

Licenses

  • codinfy_license_validate β€” validate a purchase code and domain
  • codinfy_license_list β€” list licenses for a customer

Products & checkout

  • codinfy_products_list
  • codinfy_checkout_create
  • codinfy_checkout_status

Brand & design

  • codinfy_brand_get β€” current site name, colors, logos, social
  • codinfy_brand_tokens_get β€” Tailwind CSS 4 tokens

Identity (Login with Codinfy β€” OAuth 2.0 / OIDC)

  • codinfy_oauth_metadata β€” .well-known/openid-configuration
  • codinfy_oauth_jwks β€” public JWKS
  • codinfy_oauth_apps_list β€” list connected applications

Ads

  • codinfy_ads_config_get
  • codinfy_ads_placement_create
  • codinfy_ads_stats_get

Analytics & misc

  • codinfy_event_track β€” track a custom event
  • codinfy_webhook_test
  • codinfy_health

Detailed schemas, parameters, examples and changelogs live in docs.codinfy.com/mcp.


Development

git clone https://github.com/bakalagoin/codinfy-mcp.git
cd codinfy-mcp
npm install
npm run build
npm test

Project layout

codinfy-mcp/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ index.ts              # MCP server bootstrap (stdio transport)
β”‚   β”œβ”€β”€ tools/                # one file per tool, all re-exported from index
β”‚   β”œβ”€β”€ client/               # thin HTTP client for api.codinfy.com
β”‚   └── types/                # shared schemas (Zod)
β”œβ”€β”€ tests/
β”œβ”€β”€ package.json
β”œβ”€β”€ tsconfig.json
└── .github/workflows/        # ci.yml + publish-npm.yml

Releases

Pushing a tag v* to main publishes to npm automatically (see publish-npm.yml).

npm version patch        # 0.1.0 β†’ 0.1.1
git push --follow-tags

Security

Report vulnerabilities privately to security@codinfy.com. See SECURITY.md.

Contributing

Issues and PRs welcome. See CONTRIBUTING.md.

License

MIT Β© 2026 RAFLOX SAS β€” Abidjan, CΓ΄te d'Ivoire.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured