mcp-apps-builder

作者: mcp-use

构建生产级MCP服务器的强制性参考指南,涵盖工具、资源、提示和组件。包括基础概念(工具、资源、提示、组件原语)、服务器架构、认证模式(OAuth、Supabase、自定义)以及部署策略。提供实现工具、资源、提示、响应格式以及基于组件的UI(含状态管理和主题)的详细指南。记录常见反模式(缺少验证、错误处理不当...)

npx skills add https://github.com/mcp-use/mcp-use --skill mcp-apps-builder

Build MCP Apps with mcp-use v2

Treat the installed mcp-use package, its generated types, and the project's existing exports as the source of truth. Check the installed version before changing code; do not assume APIs from mcp-use v1.

Workflow

  1. Inspect package.json, the server entry, exported tool refs, views/, and the installed mcp-use version.
  2. Scaffold a new project with npx create-mcp-use-app@latest; do not hand-build framework boilerplate.
  3. Read only the references needed for the task:
    • Server primitives for tools, resources, prompts, middleware, and result envelopes.
    • Views for interactive MCP Apps and React hooks.
    • Authentication for OAuth providers and authenticated tool handlers.
    • Migration when converting v1 code or reviewing package boundaries.
    • Verification before reporting completion.
  4. Implement against the package types. Export every statically declared tool ref that a View calls.
  5. Validate through the real lifecycle: build/typecheck, run the server, connect a client, call the tool, and render the View when one exists.

Native v2 invariants

  • Import server APIs from mcp-use; provider adapters come from mcp-use/oauth/*; React APIs come from mcp-use/react.
  • Define tools with inputSchema; add outputSchema when returning structured data or binding a View.
  • Return MCP result envelopes with content, structuredContent, and optionally _meta or isError.
  • Put each View at views/<name>/view.tsx and bind it with view: { name: "<name>" }.
  • Read the rendering call with useToolContext; use focused hooks such as useCallTool, useViewState, useHostContext, and useDisplayMode for additional behavior.
  • Export the server as the default export. Let mcp-use dev, build, and start own framework lifecycle and View compilation.
  • Keep request state in the request context or an external store. Do not rely on module globals for cross-request identity or elicitation continuity.

Minimal server and View

import { MCPServer } from "mcp-use";
import { z } from "zod";

const server = new MCPServer({ name: "catalog", version: "1.0.0" });

export const showProduct = server.tool(
  {
    name: "show-product",
    description: "Show one catalog product",
    inputSchema: z.object({ id: z.string() }),
    outputSchema: z.object({ id: z.string(), name: z.string() }),
    view: { name: "product" },
  },
  async ({ id }) => {
    const product = { id, name: "Example product" };
    return {
      content: [{ type: "text", text: JSON.stringify(product) }],
      structuredContent: product,
    };
  },
);

export default server;
// views/product/view.tsx
import { ThemeProvider, useToolContext } from "mcp-use/react";

export default function ProductView() {
  const view = useToolContext<"show-product">();
  if (view.status === "pending") return <p>Loading…</p>;
  if (view.status === "error") return <p>{view.error.message}</p>;
  return <ThemeProvider>{view.toolOutput.name}</ThemeProvider>;
}

Guardrails

  • Do not copy examples from v1 docs or historical changelogs.
  • Do not invent exports or configuration fields; confirm them in installed declarations or source.
  • Do not return a plain domain object from a tool callback.
  • Do not bind a View without an outputSchema and matching structuredContent.
  • Do not claim success from a source build alone when package exports or interactive behavior changed.
  • Do not deploy or mutate external systems unless the user explicitly requests it.

Run node <skill-dir>/scripts/check-v2.mjs <project-root> during migrations and reviews, then complete the focused checks in Verification.

Agent Skills

Put reusable agent workflows in skills/<name>/SKILL.md; the directory is served automatically, so normally omit the skills server option. Use skills: false to disable it or skills: { directory: "server-skills" } to override the project-relative directory. Keep supporting references, scripts, templates, and assets in the skill instead of inflating tool descriptions.

来自 mcp-use 的更多技能

chatgpt-app-builder
mcp-use
使用mcp-use和OpenAI Apps SDK构建带有交互式小部件的ChatGPT应用。在创建ChatGPT应用、构建带有小部件的MCP服务器、定义…时使用。
official
mcp-builder
mcp-use
使用mcp-use框架和自动组件注册构建生产级MCP服务器。通过npx create-mcp-use-app引导启动,从三个模板中选择:starter(全功能)、mcp-apps(ChatGPT优化版)或blank(极简版)。使用Zod模式定义工具、资源和提示,支持自动验证和清晰的参数描述。自动将resources/文件夹中的React组件注册为MCP工具和资源,提供MCP应用的双协议支持...
official
chatgpt-app-builder
mcp-use
已弃用:请改用 mcp-app-builder。通过交互式小部件和零配置 React 开发构建 ChatGPT 应用。此技能已弃用;请迁移至 mcp-app-builder 以获取持续支持与更新。支持人类用户与 LLM 之间通过共享交互式小部件进行协作式 UI 交互。提供服务器处理器、React 小部件脚手架、状态管理以及用于工具调用和后续消息的内置钩子。涵盖显示模式(内联、全屏、画中画)、主题设置……
official
mcp-builder
mcp-use
已弃用:使用mcp-use构建包含工具、资源、提示和交互式小部件的MCP服务器。此技能已弃用;请改用mcp-app-builder。支持在单个MCP服务器中定义工具、资源、提示和交互式React小部件。包含响应辅助工具,可将输出格式化为文本、Markdown、HTML、图像、对象和自定义小部件。提供服务器组合和代理功能,将多个MCP服务器聚合为统一接口。
official
openapi-to-mcp
mcp-use
使用 mcp-use TypeScript SDK 从 OpenAPI / Swagger 规范构建并部署 MCP 服务器。当用户想要“将这个 OpenAPI…
official