Compile software into AI-operable systems.
MCPify is the AI Enablement Compiler. Transform applications, APIs, frontends, workflows, and databases into AI-native systems for autonomous agents.
Overview · Features · Getting Started · CLI · Architecture
Modern software is built for humans, not agents. The useful actions are scattered across frontend interactions, backend services, APIs, databases, and workflows, which forces AI systems into brittle browser automation or hand-written MCP boilerplate.
- manual MCP tool authoring for capabilities that already exist
- brittle browser automation for UI interactions
- raw endpoints instead of meaningful workflows
- permission and safety gaps at the tool boundary
- schema and tool drift as the application changes
MCPify acts as a compiler for your application. It scans the parts of the codebase that matter to agents and produces a runnable MCP server, semantic workflows, permission-aware tools, and the metadata an agent needs to use them safely.
Stop hand-writing MCP tools. Compile your stack once. Stay in sync forever.
Codex is a natural fit for MCPify in a few ways:
- Ideate - use Codex to explore agent workflows, sketch MCP surfaces, and refine how a product should be exposed to AI.
- Build - use Codex to implement or extend the compiler, generators, analyzers, and demo apps in this repo.
- Run as MCP inside Codex - connect the generated MCP server so Codex can call real tools, inspect app surfaces, and operate against the compiled environment.
- Backend Analyzer: Deep AST analysis of routes, controllers, and services to surface every callable action.
- Frontend Action Extraction: React, Vue, Svelte components mapped to agent-controllable actions.
- OpenAPI → MCP: Drop in a spec, ship a typed MCP server in seconds.
- Workflow Engine: Multi-step processes detected and exposed as atomic agent capabilities.
- Permission Layer: Scopes, roles, and audit trails enforced at the tool boundary.
- AI Metadata Enhancement: Auto-generated descriptions, hints, and examples agents actually understand.
- Database Intelligence: Schemas, relations, and constraints become safe, queryable surfaces.
- Event System Integration: Webhooks, queues, and pub/sub plugged into agent loops.
- Knowledge Graph Engine: Entities, intents, and relations modeled across your stack.
- Self-Updating Sync: MCP definitions regenerate on every commit. No drift.
- AI Simulations: Run agents against your app in a sandbox before shipping.
The easiest way to use MCPify is via npx. No installation required:
npx mcpify-cli analyze .To run it against the flagship ecommerce example in this repo:
npx mcpify-cli analyze ./examples/ecommerce-saas \
--output ./examples/ecommerce-saas/.mcpify \
--prisma ./examples/ecommerce-saas/prisma/schema.prisma \
--swagger ./examples/ecommerce-saas/openapi.jsonAlternatively, to build from source:
git clone https://github.com/amarnath3003/MCPify.git
cd MCPify
npm install
npm run build
npm run mcpify -- analyze ./examples/ecommerce-saas \
--output ./examples/ecommerce-saas/.mcpify \
--prisma ./examples/ecommerce-saas/prisma/schema.prisma \
--swagger ./examples/ecommerce-saas/openapi.jsonAfter generation:
cd examples/ecommerce-saas/.mcpify
npm install
npm run buildThe generated AGENTS.md explains how to connect the compiled server to an MCP client. The ecommerce walkthrough lives in examples/ecommerce-saas/DEMO.md.
Default command. Runs the full pipeline:
- backend analysis
- optional OpenAPI, Prisma, Drizzle, and Mongoose analysis
- event and webhook discovery
- optional frontend extraction
- workflow detection
- permission classification
- MCP server generation
npx mcpify-cli analyze . \
--swagger ./tests/fixtures/swagger/petstore.yaml \
--prisma ./tests/fixtures/prisma/simple.prisma \
--watchUseful flags:
--output <dir>change output directory--no-frontendskip UI action extraction--no-eventsskip webhook and listener analysis--no-workflowsskip workflow detection--ai-enhanceimprove tool descriptions (requiresANTHROPIC_API_KEY)
Prompts for which analyzers to run and which source files to include.
npx mcpify-cli interactiveExtracts UI actions only and can print raw JSON.
npx mcpify-cli frontend ./examples/internal-tool --jsonConverts an OpenAPI or Swagger spec directly into MCP tools.
npx mcpify-cli swagger ./tests/fixtures/swagger/petstore.yamlRun a static safety audit over the discovered tools and workflows. When ANTHROPIC_API_KEY is available, simulate executes an AI simulation battery against the discovered tool surface.
npx mcpify-cli simulate ./examples/express-apiBuilt for the way agents actually operate. A layered system that keeps your application untouched while exposing exactly what agents need:
- AI Agents: Any agent runtime (Claude, GPT, Custom) connects over MCP to start operating your software like a power user.
- MCP Layer: Generated tools, resources, and prompts that map 1:1 to real surface in your app. The contract agents speak.
- Permissions: Every call passes through scopes, audit logs, and rate limits before it touches your system.
- Workflows: Discovered user journeys exposed as composable, stateful operations agents can chain.
- Your App: Your existing stack (Frontend, Backend, Database, APIs) — untouched. MCPify reads it; it never rewrites it.
mcpify/
apps/
docs/
examples/
landingPage/
packages/
ai-enhancer/
backend-analyzer/
cli/
event-analyzer/
frontend-analyzer/
graph-engine/
mcp-generator/
monitoring/
permissions/
schema-engine/
security/
sync-engine/
workflow-engine/
tests/See LICENSE.

