public-apis-mcp
Public APIs MCP is a tool to retrieve and search for public APIs from the GitHub repository public-apis. With simple configuration, it allows developers to access the latest API information, making it a valuable resource. Development is done using Bun, and local builds are also supported.
GitHub Stars
1
User Rating
Not Rated
Favorites
0
Views
24
Forks
0
Issues
0
README
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"
]
}
}