{
  "markdown": "# Meta API MCP Server\n\nA meta API Gateway server that works with the Model Context Protocol (MCP). You can connect any API to LLMs (Claude, GPT, etc.) through MCP. This enables AI assistants to interact directly with APIs and access real-world data sources.\n\n## Features\n\n- 🔄 Multi-API support: Manage multiple APIs through a single server\n- 🛠️ Easily add APIs with JSON configuration files\n- 📋 Automatically convert Postman Collections to MCP tools\n- 🔌 Comprehensive support for HTTP APIs (GET, POST, PUT, DELETE, PATCH)\n- 🔒 Various authentication methods (API Key, Bearer Token)\n- 📁 Load configurations from local files or remote URLs\n- 📑 Support for configuration file lists\n\n## API Editor Tool\n\nA user-friendly editor tool has been developed to create or edit JSON configuration files:\n\n[MCP API Editor](https://savhascelik.github.io/mcp-api-editor/)\n\n\n\n## Installation\n\n### Global Installation with NPM (Recommended)\n\n```bash\nnpm install -g meta-api-mcp-server\n```\n\n### Installation from Source Code\n\n```bash\ngit clone https://github.com/savhascelik/meta-api-mcp-server.git\ncd meta-api-mcp-server\nnpm install\n```\n\n## Usage\n\n### As a Command Line Tool\n\n```bash\n# Load from default api-configs/ folder\nmeta-api-mcp-server\n\n# Specify a configuration file (in the directory where you run the server, there should be a folder with this name and structured json in it)\nmeta-api-mcp-server path/to/config.json\n\n# Load from a specific folder\nmeta-api-mcp-server path/to/configs/\n\n# Load from a remote URL\nmeta-api-mcp-server https://example.com/api-config.json\n\n# Load from a remote configuration list\nmeta-api-mcp-server https://example.com/config-list.json\n\n# Load from a Postman Collection ( your filename must contain the word ‘postman’, I'll bind it to a variable when I have time )\nmeta-api-mcp-server path/to/My-API.postman_collection.json\n```\n\n### Using with Cursor or Other MCP Clients\n\nTo connect to an MCP client like Cursor, configure your `mcp.json` file as follows:\n\n\n\n```json\n{\n  \"mcpServers\": {\n    \"myApiServer\": { \n      \"command\": \"meta-api-mcp-server\",\n      \"args\": [\n        \n      ],\n      \"env\": {\n         \"MCP_CONFIG_SOURCE\":\"api-configs/flexweather-endpoints.json\",\n        \"API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n\n```json\n{\n  \"mcpServers\": {\n    \"myApiServer\": { \n      \"command\": \"meta-api-mcp-server\",\n      \"args\": [\n        \"server.js\",\n        \"path/to/api-config.json\"\n      ],\n      \"env\": {\n        \"EXAMPLE_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n```json\n{\n  \"mcpServers\": {\n\n    \"flexweather\": { \n      \"command\": \"node\",\n      \"args\": [\n        \"server.js\"\n        \n      ],\n      \"env\": {\n        \"MCP_CONFIG_SOURCE\":\"api-configs/flexweather-endpoints.json\"\n      }\n    }\n  }\n}\n```\n\n```json\n{\n  \"mcpServers\": {\n     \"lemonsqueezy\": { \n      \"command\": \"node\",\n      \"args\": [\n        \"server.js\"\n        \n      ],\n      \"env\": {\n        \"MCP_CONFIG_SOURCE\":\"api-configs/lemon-squeezy-api.json\",\n        \"LEMON_SQUEEZY_API_KEY\": \"\"\n      \n      }\n    }\n  }\n}\n```\n\n## Postman Collection Conversion\n\nUsing your existing Postman collections with Meta API MCP Server is now very easy! You can use hundreds of ready-made APIs without writing a single line of code.\n\n1. Export your Postman collection (in v2.1.0 format)\n2. Start Meta API MCP Server with the collection file:\n\n```bash\nmeta-mcp my-collection.postman_collection.json\n```\n\n3. The server will automatically:\n   - Analyze all endpoints\n   - Detect the authentication method\n   - Extract path/query parameters\n   - Analyze request body structure\n   - Create MCP tools\n\n4. Add your API key to the `.env` file (the server will tell you which environment variable to use)\n\n### Supported Postman Collection Features\n\n- ✅ Multi-level folder structure\n- ✅ Bearer token authentication\n- ✅ API Key authentication\n- ✅ Path parameters\n- ✅ Query parameters\n- ✅ Headers\n- ✅ JSON request body\n- ✅ Postman variables (like {{api_url}})\n\n\n## API Editor Tool\n\nA user-friendly editor tool has been developed to create or edit JSON configuration files:\n\n[MCP API Editor](https://savhascelik.github.io/mcp-api-editor/)\n\nWith this web tool, you can:\n\n- Create API configurations through a visual interface\n- Edit existing JSON configurations\n- Convert Postman collections to MCP-compatible configuration files\n- Validate configuration files\n- Export your configurations as JSON\n\n**Postman Collections:** You can upload your existing Postman collections to the editor tool and automatically convert them to MCP-compatible configurations. This allows you to quickly use your existing collections instead of configuring APIs from scratch.\n\nThe editor makes it easy to manage tool names, parameters, and all other configuration options.\n\n\n\n\n\n\n## Project Structure\n\nThe codebase is organized in a modular way to facilitate maintenance and extension:\n\n```\nmeta-api-mcp-server/\n├── serve.js\n├── api-configs/            # Default config directory\n└── package.json\n```\n\n## API Configuration File Format\n\nYou can manually configure APIs using the following JSON format:\n\n```json\n{\n  \"apiId\": \"my-api\",\n  \"handlerType\": \"httpApi\",\n  \"baseUrl\": \"https://api.example.com\",\n  \"authentication\": {\n    \"type\": \"bearerToken\",\n    \"envVariable\": \"MY_API_TOKEN\"\n  },\n  \"endpoints\": [\n    {\n      \"mcpOperationId\": \"getUsers\",\n      \"description\": \"Get a list of users\",\n      \"targetPath\": \"/users\",\n      \"targetMethod\": \"GET\",\n      \"parameters\": [\n        {\n          \"name\": \"page\",\n          \"in\": \"query\",\n          \"required\": false,\n          \"type\": \"integer\",\n          \"description\": \"Page number\"\n        }\n      ]\n    }\n  ]\n}\n```\n\n## License\n\nMIT ",
  "bytes": 5648,
  "sha": "fb40c5e7169ee428d562f5b9eee8cd8b9751714c0fcbf9d44439bbde2ea2746e",
  "repo_slug": "savhascelik/meta-api-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_savhascelik_meta_api_mcp_serve_2aade0c4/readme"
}