MCP Configs2026年4月6日·1 分钟阅读

mcp-use — Fullstack MCP Framework for AI Agents & Apps

Build MCP servers and apps for ChatGPT, Claude, and any LLM with TypeScript or Python SDK. Includes inspector, cloud deploy, and interactive widgets.

TO
TokRepo精选 · Community
快速使用

先拿来用,再决定要不要深挖

这里应该同时让用户和 Agent 知道第一步该复制什么、安装什么、落到哪里。

TypeScript:

npx create-mcp-use-app@latest

Python:

pip install mcp-use

简介

mcp-use 是一个全栈 MCP 框架,用于构建 MCP 服务器和应用,拥有 9,700+ GitHub stars。支持 TypeScript 和 Python,兼容 ChatGPT、Claude 及任何 MCP 客户端,包含检查器、云部署和跨平台交互式组件。被 NASA、NVIDIA、SAP 的工程团队使用。


mcp-use — 构建 MCP 应用和服务器

TypeScript 快速开始

const server = new MCPServer({ name: "my-server", version: "1.0.0" });
server.tool({ name: "get_weather", schema: z.object({ city: z.string() }) },
  async ({ city }) => text(`Temperature: 72°F, City: ${city}`));
await server.listen(3000);

🙏

来源与感谢

Created by mcp-use. Licensed under MIT.

mcp-use — ⭐ 9,700+

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产