ai-to-mcp

nulldql/ai-to-mcp
★ 0 stars TypeScript API Integration Updated 1d ago
turns an openapi spec or a file of typescript functions into an mcp server
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "ai-to-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "nulldql/ai-to-mcp"
      ]
    }
  }
}

README Excerpt

Turns an OpenAPI spec or a file of TypeScript functions into an MCP server. No manual wiring, no reading through docs to figure out the SDK's API shape. Point it at something and get a server back. ```bash ai-to-mcp https://myapi.com/openapi.json ``` ```bash ai-to-mcp ./tools/weather.ts ``` Either one generates a full project: package.json, tsconfig, a README, and one file per tool, ready to install and build.