Skill Pack
Implement Model Context Protocol (MCP) servers using Streamable HTTP transport and JSON-RPC 2.0.
Implement Model Context Protocol (MCP) servers that provide tools, resources, and prompts to AI assistants.
MCP uses JSON-RPC 2.0 over HTTP with Server-Sent Events (SSE) for real-time communication. Servers expose:
Handle the initialize handshake, negotiate protocol version and capabilities, and register available tools.
Each tool has a name, description, input schema (JSON Schema), and handler function. Return structured results.
Use stateless or stateful sessions depending on your needs. KV storage works well for session state in serverless environments.