The Infoplaza Platform MCP Server makes all Infoplaza Platform APIs available as standardized tools within the Model Context Protocol (MCP) ecosystem.
This allows AI agents, assistants, and autonomous applications to directly query weather, geospatial, and mobility data through a unified interface that LLMs can understand and act upon.
Model Context Protocol (MCP) is an open protocol that enables AI applications to securely access external data sources and tools. MCP servers act as bridges between AI models and external APIs, providing:
Instead of making direct HTTP requests, AI assistants can use MCP tools that are described in a way they understand, making integration seamless and intuitive.
The Infoplaza MCP Server exposes all platform APIs as MCP tools. When an AI assistant needs weather, geospatial, or mobility data, it can:
The MCP server handles authentication, request validation, data normalization, and response formatting automatically.
The MCP server provides access to all Infoplaza Platform APIs.
https://platform-api.infoplaza.com/v1/mcp?api_key=API_KEY
All MCP requests require your API key as a query parameter. The MCP server uses the same authentication system as the REST API.
Parameters:
api_key (required) — Your Infoplaza Platform API keyAdd the MCP server to your Claude Desktop configuration:
{
"mcpServers": {
"infoplaza": {
"url": "https://platform-api.infoplaza.com/v1/mcp",
"apiKey": "your-api-key-here"
}
}
}
Once configured, you can ask Claude questions like:
MCP servers can be integrated into any application that supports the Model Context Protocol. The server exposes tools that can be called programmatically:
// Example: Calling MCP tools from your application
const response = await mcpClient.callTool({
name: "weather_forecast",
arguments: {
lat: 52.3676,
lon: 4.9041
}
});
The MCP server provides tool descriptions that include:
AI models use these descriptions to determine which tools to call and how to use them correctly.
MCP tools return structured responses that include:
This structure allows AI models to understand and present the data effectively to users.
For more information about the Model Context Protocol, visit the official MCP documentation.