Kenai MCP Server Hub

Multiple Model Context Protocol servers available via HTTP endpoints

Quick Start

Add to your MCP configuration file:

~/.cursor/mcp.jsonor.cursor/mcp.json
mcp.json
{
  "mcpServers": {
    "echo": {
      "url": "https://mcp.kenai.app/echo"
    },
    "calculator": {
      "url": "https://mcp.kenai.app/calculator"
    },
    "weather": {
      "url": "https://mcp.kenai.app/weather"
    },
    "dynamo": {
      "url": "https://mcp.kenai.app/dynamo"
    }
  }
}

Available Servers

echo-server
v1.0.0
A simple echo server that returns the input message
/echo
calculator-server
v1.0.0
A calculator server with basic math operations
/calculator
weather-server
v1.0.0
A weather server that provides mock weather data for cities
/weather
dynamo-server
v1.0.0
A read-only DynamoDB server for querying and exploring tables
/dynamo

API Reference

POST/[server]

Send MCP messages to a specific server (Streamable HTTP transport)

GET/[server]

SSE connection for server-sent events from MCP server