← ClaudeAtlas

mcp-architectlisted

MCP (Model Context Protocol) 2025-11-25 server standards — tool/resource/prompt primitives, capability negotiation, Streamable HTTP transport with Mcp-Session-Id, OAuth 2.1 + RFC 8707 resource indicators, tool annotations (readOnly/destructive/idempotent), structured output, JSON-RPC error mapping, prompt-injection and SSRF defenses, MCP Inspector testing. Python (FastMCP) and Go (official SDK) recipes. Use when designing, reviewing, or scaffolding an MCP server.
ralvarezdev/ralvaskills · ★ 2 · AI & Automation · score 75
Install: claude install-skill ralvarezdev/ralvaskills
# MCP Architecture Vanilla MCP servers exposing **tools**, **resources**, and **prompts** to LLM clients over JSON-RPC 2.0. Spec target: **2025-11-25** (current stable; the 2026-07-28 release candidate is locked but not yet final — see [§12](#12-versioning--deprecation)). Server-focused; brief client section in [RECIPES §10](RECIPES.md#10-client-quick-reference). Pinned deps in [STACK.md](STACK.md). Pairs with: - [security-reviewer](../../quality/security-reviewer/SKILL.md) — MCP servers expand the agent's blast radius; treat every tool call as untrusted input. - [rest-api-architect](../rest-api-architect/SKILL.md) and [grpc-architect](../grpc-architect/SKILL.md) — many MCP servers wrap an existing API; reuse those error and pagination conventions. ## 1. When to pick MCP (and when not to) MCP exists to let an LLM client (Claude Desktop, Cursor, VS Code, ChatGPT, an agent) plug into your capabilities without per-client glue code. Reach for it when: - The same capability is consumed by multiple LLM clients and you don't want N integrations. - You need an LLM to call your tools, read your resources, or render your prompt templates inside a chat. - The agent needs to dynamically discover what your service can do — REST/gRPC contracts are static; MCP `tools/list` is dynamic per session. **Don't** use MCP when: - The caller is server-to-server backend code — use [gRPC](../grpc-architect/SKILL.md) or [REST](../rest-api-architect/SKILL.md). MCP is for LLM-mediated calls. - You