What problem does it solve?
Interact with Wren MCP server via plain HTTP JSON-RPC requests — no MCP client SDK required. Covers session initialization, tool discovery, and calling all 20+ Wren tools (query, deploy, metadata, health check) using standard HTTP POST with JSON-RPC 2.0 payloads. Use when the client cannot or prefers not to use the MCP protocol directly (e.g. OpenClaw, custom HTTP clients, shell scripts, or any environment without an MCP SDK).
Core Features & Use Cases
- Initialize a JSON-RPC session and discover available tools on the Wren MCP server.
- Call tools (query, deploy, metadata, health_check) via the tools/call method using JSON-RPC 2.0 over HTTP.
- Seamlessly integrate Wren MCP in environments without an MCP SDK or with simple HTTP clients (curl, fetch, requests) for rapid prototyping or automation.
Quick Start
Use an HTTP client to initialize a session, list available tools, and call a tool via tools/call with the required arguments.