[ ABORT TO HUD ]
SEQ. 1
SEQ. 2

Primitives & Execution

Model Context Protocol20 min800 BASE XP

Universal Context Sockets

The Model Context Protocol (MCP) is an open-source standard created by Anthropic to eliminate custom integrations. It allows you to build an "MCP Server" once (e.g., for PostgreSQL, GitHub, or local filesystems) and connect it to any AI assistant (Claude Desktop, Claude Code, Cursor, etc.) using a standardized JSON-RPC 2.0 protocol over stdio or Streamable HTTP / SSE.

The Three MCP Primitives

  • Resources: Static or streaming data sources like file contents, database records, or system logs (Read-only context).
  • Prompts: Templated instructions and parameterized workflows.
  • Tools: Executable functions that perform computations or mutate external state (Write/Action).
SYNAPSE VERIFICATION
QUERY 1 // 2
How do local MCP clients and servers communicate with minimal latency?
WebSocket
JSON-RPC 2.0 over standard input/output (stdio)
REST API polling
GraphQL subscriptions