开源 MCP 学习平台

MCP Challenge

掌握模型上下文协议。通过互动挑战和实时练习场学习、构建和竞争。

什么是 MCP?

模型上下文协议是 Anthropic 推出的开放标准,使 AI 助手能够安全地访问工具、数据源和服务。可以将其视为 AI 与世界之间的通用适配器。

// Example MCP Tool
server.tool(
  "weather.get",
  "Get current weather for a city",
  { city: z.string() },
  async ({ city }) => {
    const data = await fetchWeather(city);
    return { temperature: data.temp, conditions: data.weather };
  }
);

开始你的旅程

10+
挑战
5
教程
无限可能
0
费用
MCP Challenge - Learn & Master the Model Context Protocol