mcp-server
0
The Zyla API Hub MCP Server enables large language models to interface with public APIs from the Zyla API Hub using the Model Context Protocol. It is designed to be secure, supporting API key authorization, and is easily deployable through Docker.
๐ Zyla API Hub MCP Server
This MCP server allows any large language model (LLM) using the Model Context Protocol (MCP) to access any public API from the Zyla API Hub by providing:
- โ HTTP method (GET, POST, PUT, DELETE, etc.)
- โ Full API endpoint (URL)
- โ
Headers (like
Authorization
) - โ Query parameters or JSON body
โจ Features
- ๐ Generic API caller โ supports any Zyla API Hub endpoint
- ๐ Secure โ API keys passed via headers
- ๐ Dockerized โ easy to deploy
๐งช Example Use
Input to the MCP tool:
{
"method": "GET",
"url": "https://www.zylalabs.com/api/824/crime+data+by+zipcode+api/583/get+crime+rates+by+zip",
"headers": {
"Authorization": "Bearer YOUR_ZYLA_API_KEY"
}
}