Zyla API Hub MCP Server
by Zyla-Labs
The Zyla API Hub MCP Server enables LLMs using the Model Context Protocol (MCP) to access any public API from the Zyla API Hub. It supports various HTTP methods and handles authentication via headers.
View on GitHub
Last updated: N/A
๐ 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"
}
}