public-apis-mcp
0
The Public APIs MCP allows users to list and search public APIs from the public-apis GitHub repository. It is designed to work with MCP and requires Bun for development.
Public APIs MCP
List and search public APIs from public-apis.
Usage
Add to your mcp.json
to use latest version from npm:
{
"public-apis-mcp": {
"name": "Public APIs",
"description": "Get list of public APIs from github.com/public-apis",
"command": "npx",
"args": ["-y", "public-apis-mcp@latest"]
}
}
Development
- Requires Bun
- Install:
bun install
- Build:
bun run build
- Watch:
bun run build:watch
- Inspector:
bun inspector
To use your local build add the following to your mcp.json
:
{
"public-apis-mcp": {
"name": "Public APIs",
"description": "Get list of public APIs from github.com/public-apis",
"command": "node",
"args": [
"<PATH_TO_THIS_REPO>/build/index.mjs"
]
}
}