Enables interaction with the GitHub REST API by parsing its documentation and generating tool definitions for endpoints like users and other resources.
Enables interaction with the Stripe API by parsing its documentation and automatically generating tool definitions for its financial and payment services.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCPifyCreate an MCP server for the Stripe API using https://stripe.com/docs/api"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCPify
Point it at API docs, get an MCP server.
MCPify scrapes API documentation, uses Gemini to figure out the endpoints/auth/params, and spits out a config file. The runtime reads that config and runs an MCP server that Claude (or any MCP client) can use to call the API.
Installation
Needs Python 3.11+ and a Gemini API key.
Usage
To use with Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
CLI
mcpify parse <url> - Scrape docs and generate config
Option | Description |
| Output file (default: |
| Max pages to scrape (default: 10) |
| Don't follow links |
| Gemini API key (or use env var) |
| Gemini model (default: |
mcpify serve <config> - Run MCP server
Option | Description |
| Auth token for API calls |
|
|
mcpify show <config> - Print config as table
mcpify quickstart <url> - Parse and serve in one shot
Config Format
The generated JSON looks like this:
Auth types: none, api_key, bearer, oauth2
Parameter locations: query, path, header, body
Python API
Examples
License
MIT