From e5630bd15d60da31a2f1f1d5b86d6c03879d6595 Mon Sep 17 00:00:00 2001 From: Patdolitse Date: Mon, 25 May 2026 18:21:38 +0800 Subject: [PATCH 1/2] Add mcp topic --- topics/mcp/index.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 topics/mcp/index.md diff --git a/topics/mcp/index.md b/topics/mcp/index.md new file mode 100644 index 00000000000..8409e8209a7 --- /dev/null +++ b/topics/mcp/index.md @@ -0,0 +1,21 @@ +--- +display_name: MCP +topic: mcp +aliases: + - model-context-protocol +related: + - mcp-server + - ai-agent + - llm + - agent-harness +short_description: Model Context Protocol (MCP) is an open standard for connecting AI models to external tools and data sources. +created_by: Anthropic +url: https://modelcontextprotocol.io +released: November 2024 +--- + +Model Context Protocol (MCP) is an open standard that defines how AI applications connect to external tools, data sources, and services. MCP uses a client-server architecture where AI-powered applications (clients) communicate with lightweight programs (servers) that expose specific capabilities through a standardized interface. + +MCP servers can provide tools (executable functions), resources (read-only data), and prompts (reusable templates). The protocol supports multiple transport mechanisms including stdio for local processes and HTTP with Server-Sent Events for remote connections. + +The protocol was created by Anthropic and released as an open specification. It is supported by AI tools including Claude Code, Cursor, Codex, Windsurf, and Claude Desktop. From 9f22644594f047867480deefcf6eb8410b35d216 Mon Sep 17 00:00:00 2001 From: Patdolitse <168504668+Patdolitse@users.noreply.github.com> Date: Mon, 25 May 2026 18:49:12 +0800 Subject: [PATCH 2/2] Fix aliases and related fields to use comma-separated format --- topics/mcp/index.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/topics/mcp/index.md b/topics/mcp/index.md index 8409e8209a7..ee38293feb5 100644 --- a/topics/mcp/index.md +++ b/topics/mcp/index.md @@ -1,13 +1,8 @@ --- display_name: MCP topic: mcp -aliases: - - model-context-protocol -related: - - mcp-server - - ai-agent - - llm - - agent-harness +aliases: model-context-protocol +related: mcp-server, ai-agent, llm, agent-harness short_description: Model Context Protocol (MCP) is an open standard for connecting AI models to external tools and data sources. created_by: Anthropic url: https://modelcontextprotocol.io