HTTP transport adapter for MCP SDK stdio protocol implementation.
Implements HTTP/HTTPS transport layer for Model Context Protocol servers using stdio-based communication. Requires compatible MCP server endpoint.
Requires MCP-compatible server with HTTP API endpoints.
npx mcp-http-client <server-url>
Edit Claude Desktop config file:
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "mcp-http-client", "<server-url>"]
}
}
}
MCP server must implement these endpoints:
GET /health
GET /api/search?query=<string>&category=<string>&limit=<number>
GET /api/document?id=<string>
GET /api/categories
search_knowledge
: Query document searchget_document
: Retrieve document by IDlist_categories
: List available categories
Transport: StdioServerTransport Protocol: MCP SDK v0.6.0 Node: >=18.0.0
MIT