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.

介绍

mcp-use is a fullstack MCP framework for building MCP servers and apps, with 9,700+ GitHub stars. It supports TypeScript and Python and works with ChatGPT, Claude, and any MCP client — including an inspector, cloud deployment, and cross-platform interactive components. Used by engineering teams at NASA, NVIDIA, and SAP.


mcp-use — Build MCP Apps and Servers

TypeScript Quick Start

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+

讨论

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