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.
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.
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_β¦β productionpk_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 domaincodinfy_license_listβ list licenses for a customer
Products & checkout
codinfy_products_listcodinfy_checkout_createcodinfy_checkout_status
Brand & design
codinfy_brand_getβ current site name, colors, logos, socialcodinfy_brand_tokens_getβ Tailwind CSS 4 tokens
Identity (Login with Codinfy β OAuth 2.0 / OIDC)
codinfy_oauth_metadataβ.well-known/openid-configurationcodinfy_oauth_jwksβ public JWKScodinfy_oauth_apps_listβ list connected applications
Ads
codinfy_ads_config_getcodinfy_ads_placement_createcodinfy_ads_stats_get
Analytics & misc
codinfy_event_trackβ track a custom eventcodinfy_webhook_testcodinfy_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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.