IMPORTANT: How to Use This Skill
This file provides a NAVIGATION GUIDE ONLY. Before implementing any MCP server features, you MUST:
- Read this overview to understand which reference files are relevant
- ALWAYS read the specific reference file(s) for the features you're implementing
- Apply the detailed patterns from those files to your implementation
Do NOT rely solely on the quick reference examples in this file - they are minimal examples only. The reference files contain critical best practices, security considerations, and advanced patterns.
MCP Server Best Practices
Comprehensive guide for building production-ready MCP servers with tools, resources, prompts, and widgets using mcp-use.
⚠️ FIRST: New Project or Existing Project?
Before doing anything else, determine whether you are inside an existing mcp-use project.
Detection: Check the workspace for a package.json that lists "mcp-use" as a dependency, OR any .ts file that imports from "mcp-use/server".
├─ mcp-use project FOUND → Do NOT scaffold. You are already in a project.
│ └─ Skip to "Quick Navigation" below to add features.
│
├─ NO mcp-use project (empty dir, unrelated project, or greenfield)
│ └─ Scaffold first with npx create-mcp-use-app, then add features.
│ See "Scaffolding a New Project" below.
│
└─ Inside an UNRELATED project (e.g. Next.js app) and user wants an MCP server
└─ Ask the user where to create it, then scaffold in that directory.
Do NOT scaffold inside an existing unrelated project root.
NEVER manually create MCPServer boilerplate, package.json, or project structure by hand. The CLI sets up TypeScript config, dev scripts, inspector integration, hot reload, and widget compilation that are difficult to replicate manually.
Scaffolding a New Project
npx create-mcp-use-app my-server
cd my-server
npm run dev
For full scaffolding details and CLI flags, see quickstart.md.
Quick Navigation
Choose your path based on what you're building:
🚀 Foundations
When: ALWAYS read these first when starting MCP work in a new conversation. Reference later for architecture/concept clarification.
- concepts.md - MCP primitives (Tool, Resource, Prompt, Widget) and when to use each
- architecture.md - Server structure (Hono-based), middleware system, server.use() vs server.app
- quickstart.md - Scaffolding, setup, and first tool example
- deployment.md - Deploying to Manufact Cloud, self-hosting, Docker, managing deployments
Load these before diving into tools/resources/widgets sections.
🔐 Adding Authentication?
When: Protecting your server with OAuth (WorkOS, Supabase, or custom)
overview.md
- When: First time adding auth, understanding
ctx.auth, or choosing a provider
- Covers:
oauth config, user context shape, provider comparison, common mistakes
workos.md
- When: Using WorkOS AuthKit for authentication
- Covers: Setup, env vars, DCR vs pre-registered, roles/permissions, WorkOS API calls
supabase.md
- When: Using Supabase for authentication
- Covers: Setup, env vars, HS256 vs ES256, RLS-aware API calls
custom.md
- When: Using any other identity provider (GitHub, Okta, Azure AD, Google, etc.)
- Covers: Custom verification, user info extraction, provider examples
🔧 Building Server Backend (No UI)?
When: Implementing MCP features (actions, data, templates). Read the specific file for the primitive you're building.
tools.md
- When: Creating backend actions the AI can call (send-email, fetch-data, create-user)
- Covers: Tool definition, schemas, annotations, context, error handling
resources.md
- When: Exposing read-only data clients can fetch (config, user profiles, documentation)
- Covers: Static resources, dynamic resources, parameterized resource templates, URI completion
prompts.md
- When: Creating reusable message templates for AI interactions (code-review, summarize)
- Covers: Prompt definition, parameterization, argument completion, prompt best practices
response-helpers.md
- When: Formatting responses from tools/resources (text, JSON, markdown, images, errors)
- Covers:
text(), object(), markdown(), image(), error(), mix()
🎨 Building Visual Widgets (Interactive UI)?
When: Creating React-based visual interfaces for browsing, comparing, or selecting data
basics.md
- When: Creating your first widget or adding UI to an existing tool
- Covers: Widget setup,
useWidget() hook, isPending checks, props handling
state.md
- When: Managing UI state (selections, filters, tabs) within widgets
- Covers:
useState, setState, state persistence, when to use tool vs widget state
interactivity.md
- When: Adding buttons, forms, or calling tools from within widgets
- Covers:
useCallTool(), form handling, action buttons, optimistic updates
ui-guidelines.md
- When: Styling widgets to support themes, responsive layouts, or accessibility
- Covers:
useWidgetTheme(), light/dark mode, autoSize, layout patterns, CSS best practices
advanced.md
- When: Building complex widgets with async data, error boundaries, or performance optimizations
- Covers: Loading states, error handling, memoization, code splitting
📚 Need Complete Examples?
When: You want to see full implementations of common use cases
- common-patterns.md
- End-to-end examples: weather app, todo list, recipe browser
- Shows: Server code + widget code + best practices in context
Decision Tree
What do you need?
├─ New project from scratch
│ └─> quickstart.md (scaffolding + setup)
│
├─ OAuth / user authentication
│ └─> authentication/overview.md → provider-specific guide
│
├─ Simple backend action (no UI)
│ └─> Use Tool: server/tools.md
│
├─ Read-only data for clients
│ └─> Use Resource: server/resources.md
│
├─ Reusable prompt template
│ └─> Use Prompt: server/prompts.md
│
├─ Visual/interactive UI
│ └─> Use Widget: widgets/basics.md
│
└─ Deploy to production
└─> deployment.md (cloud deploy, self-hosting, Docker)
Core Principles
- Tools for actions - Backend operations with input/output
- Resources for data - Read-only data clients can fetch
- Prompts for templates - Reusable message templates
- Widgets for UI - Visual interfaces when helpful
- Mock data first - Prototype quickly, connect APIs later
❌ Common Mistakes
Avoid these anti-patterns found in production MCP servers:
Tool Definition
- ❌ Returning raw objects instead of using response helpers
- ✅ Use
text(), object(), widget(), error() helpers
- ❌ Skipping Zod schema
.describe() on every field
- ✅ Add descriptions to all schema fields for better AI understanding
- ❌ No input validation or sanitization
- ✅ Validate inputs with Zod, sanitize user-provided data
- ❌ Throwing errors instead of returning
error() helper
- ✅ Use
error("message") for graceful error responses
Widget Development
- ❌ Accessing
props without checking isPending
- ✅ Always check
if (isPending) return <Loading/>
- ❌ Widget handles server state (filters, selections)
- ✅ Widgets manage their own UI state with
useState
- ❌ Missing
McpUseProvider wrapper or autoSize
- ✅ Wrap root component:
<McpUseProvider autoSize>
- ❌ Inline styles without theme awareness
- ✅ Use
useWidgetTheme() for light/dark mode support
Security & Production
- ❌ Hardcoded API keys or secrets in code
- ✅ Use
process.env.API_KEY, document in .env.example
- ❌ No error handling in tool handlers
- ✅ Wrap in try/catch, return
error() on failure
- ❌ Expensive operations without caching
- ✅ Cache API calls, computations with TTL
- ❌ Missing CORS configuration
- ✅ Configure CORS for production deployments
🔒 Golden Rules
Opinionated architectural guidelines:
1. One Tool = One Capability
Split broad actions into focused tools:
- ❌
manage-users (too vague)
- ✅
create-user, delete-user, list-users
2. Return Complete Data Upfront
Tool calls are expensive. Avoid lazy-loading:
- ❌
list-products + get-product-details (2 calls)
- ✅
list-products returns full data including details
3. Widgets Own Their State
UI state lives in the widget, not in separate tools:
- ❌
select-item tool, set-filter tool
- ✅ Widget manages with
useState or setState
4. exposeAsTool Defaults to false
Widgets are registered as resources only by default. Use a custom tool (recommended) or set exposeAsTool: true to expose a widget to the model:
// ✅ ALL 4 STEPS REQUIRED for proper type inference:
// Step 1: Define schema separately
const propsSchema = z.object({
title: z.string(),
items: z.array(z.string()),
});
// Step 2: Reference schema variable in metadata
export const widgetMetadata: WidgetMetadata = {
description: "...",
props: propsSchema, // ← NOT inline z.object()
exposeAsTool: false,
};
// Step 3: Infer Props type from schema variable
type Props = z.infer<typeof propsSchema>;
// Step 4: Use typed Props with useWidget
export default function MyWidget() {
const { props, isPending } = useWidget<Props>(); // ← Add <Props>
// ...
}
⚠️ Common mistake: Only doing steps 1-2 but skipping 3-4 (loses type safety)
5. Validate at Boundaries Only
- Trust internal code and framework guarantees
- Validate user input, external API responses
- Don't add error handling for scenarios that can't happen
6. Prefer Widgets for Browsing/Comparing
When in doubt, add a widget. Visual UI improves:
- Browsing multiple items
- Comparing data side-by-side
- Interactive selection workflows
Quick Reference
Minimal Server
import { MCPServer, text } from "mcp-use/server";
import { z } from "zod";
const server = new MCPServer({
name: "my-server",
title: "My Server",
version: "1.0.0",
});
server.tool(
{
name: "greet",
description: "Greet a user",
schema: z.object({ name: z.string().describe("User's name") }),
},
async ({ name }) => text("Hello " + name + "!"),
);
server.listen();
Response Helpers
| Helper |
Use When |
Example |
text() |
Simple string response |
text("Success!") |
object() |
Structured data |
object({ status: "ok" }) |
markdown() |
Formatted text |
markdown("# Title\nContent") |
widget() |
Visual UI |
widget({ props: {...}, output: text(...) }) |
mix() |
Multiple contents |
mix(text("Hi"), image(url)) |
error() |
Error responses |
error("Failed to fetch data") |
resource() |
Embed resource refs |
resource("docs://guide", "text/markdown") |
Source: Shubhamsaboo/awesome-llm-apps → generative_ui_agents/ai-mcp-app-builder/apps/mcp-use-server/.agent/skills/mcp-apps-builder/SKILL.md
1---2name: mcp-apps-builder3description: | **MANDATORY for ALL MCP server work** - mcp-use framework best practices and patterns. **READ THIS FIRST** before any MCP server work, including: Creating new MCP servers Modifying existing MCP servers (adding/updating tools, resources, prompts, widgets) Debugging MCP server issues or errors Reviewing MCP server code for quality, security, or performance Answering questions about MCP development or mcp-use patterns Making ANY changes to server.tool(), server.resource(), server.prompt(), or widgets This skill contains critical architecture decisions, security patterns, and common pitfalls. Always consult the relevant reference files BEFORE implementing MCP features.4---567# IMPORTANT: How to Use This Skill89This file provides a NAVIGATION GUIDE ONLY. Before implementing any MCP server features, you MUST:10111. Read this overview to understand which reference files are relevant122. **ALWAYS read the specific reference file(s)** for the features you're implementing133. Apply the detailed patterns from those files to your implementation1415**Do NOT rely solely on the quick reference examples in this file** - they are minimal examples only. The reference files contain critical best practices, security considerations, and advanced patterns.1617---1819# MCP Server Best Practices2021Comprehensive guide for building production-ready MCP servers with tools, resources, prompts, and widgets using mcp-use.2223## ⚠️ FIRST: New Project or Existing Project?2425**Before doing anything else, determine whether you are inside an existing mcp-use project.**2627**Detection:** Check the workspace for a `package.json` that lists `"mcp-use"` as a dependency, OR any `.ts` file that imports from `"mcp-use/server"`.2829```30├─ mcp-use project FOUND → Do NOT scaffold. You are already in a project.31│ └─ Skip to "Quick Navigation" below to add features.32│33├─ NO mcp-use project (empty dir, unrelated project, or greenfield)34│ └─ Scaffold first with npx create-mcp-use-app, then add features.35│ See "Scaffolding a New Project" below.36│37└─ Inside an UNRELATED project (e.g. Next.js app) and user wants an MCP server38 └─ Ask the user where to create it, then scaffold in that directory.39 Do NOT scaffold inside an existing unrelated project root.40```4142**NEVER manually create `MCPServer` boilerplate, `package.json`, or project structure by hand.** The CLI sets up TypeScript config, dev scripts, inspector integration, hot reload, and widget compilation that are difficult to replicate manually.4344---4546### Scaffolding a New Project4748```bash49npx create-mcp-use-app my-server50cd my-server51npm run dev52```5354For full scaffolding details and CLI flags, see **[quickstart.md](references/foundations/quickstart.md)**.5556---5758## Quick Navigation5960**Choose your path based on what you're building:**6162### 🚀 Foundations6364**When:** ALWAYS read these first when starting MCP work in a new conversation. Reference later for architecture/concept clarification.65661. **[concepts.md](references/foundations/concepts.md)** - MCP primitives (Tool, Resource, Prompt, Widget) and when to use each672. **[architecture.md](references/foundations/architecture.md)** - Server structure (Hono-based), middleware system, server.use() vs server.app683. **[quickstart.md](references/foundations/quickstart.md)** - Scaffolding, setup, and first tool example694. **[deployment.md](references/foundations/deployment.md)** - Deploying to Manufact Cloud, self-hosting, Docker, managing deployments7071Load these before diving into tools/resources/widgets sections.7273---7475### 🔐 Adding Authentication?7677**When:** Protecting your server with OAuth (WorkOS, Supabase, or custom)7879- **[overview.md](references/authentication/overview.md)**80 - When: First time adding auth, understanding `ctx.auth`, or choosing a provider81 - Covers: `oauth` config, user context shape, provider comparison, common mistakes8283- **[workos.md](references/authentication/workos.md)**84 - When: Using WorkOS AuthKit for authentication85 - Covers: Setup, env vars, DCR vs pre-registered, roles/permissions, WorkOS API calls8687- **[supabase.md](references/authentication/supabase.md)**88 - When: Using Supabase for authentication89 - Covers: Setup, env vars, HS256 vs ES256, RLS-aware API calls9091- **[custom.md](references/authentication/custom.md)**92 - When: Using any other identity provider (GitHub, Okta, Azure AD, Google, etc.)93 - Covers: Custom verification, user info extraction, provider examples9495---9697### 🔧 Building Server Backend (No UI)?9899**When:** Implementing MCP features (actions, data, templates). Read the specific file for the primitive you're building.100101- **[tools.md](references/server/tools.md)**102 - When: Creating backend actions the AI can call (send-email, fetch-data, create-user)103 - Covers: Tool definition, schemas, annotations, context, error handling104105- **[resources.md](references/server/resources.md)**106 - When: Exposing read-only data clients can fetch (config, user profiles, documentation)107 - Covers: Static resources, dynamic resources, parameterized resource templates, URI completion108109- **[prompts.md](references/server/prompts.md)**110 - When: Creating reusable message templates for AI interactions (code-review, summarize)111 - Covers: Prompt definition, parameterization, argument completion, prompt best practices112113- **[response-helpers.md](references/server/response-helpers.md)**114 - When: Formatting responses from tools/resources (text, JSON, markdown, images, errors)115 - Covers: `text()`, `object()`, `markdown()`, `image()`, `error()`, `mix()`116117---118119### 🎨 Building Visual Widgets (Interactive UI)?120121**When:** Creating React-based visual interfaces for browsing, comparing, or selecting data122123- **[basics.md](references/widgets/basics.md)**124 - When: Creating your first widget or adding UI to an existing tool125 - Covers: Widget setup, `useWidget()` hook, `isPending` checks, props handling126127- **[state.md](references/widgets/state.md)**128 - When: Managing UI state (selections, filters, tabs) within widgets129 - Covers: `useState`, `setState`, state persistence, when to use tool vs widget state130131- **[interactivity.md](references/widgets/interactivity.md)**132 - When: Adding buttons, forms, or calling tools from within widgets133 - Covers: `useCallTool()`, form handling, action buttons, optimistic updates134135- **[ui-guidelines.md](references/widgets/ui-guidelines.md)**136 - When: Styling widgets to support themes, responsive layouts, or accessibility137 - Covers: `useWidgetTheme()`, light/dark mode, `autoSize`, layout patterns, CSS best practices138139- **[advanced.md](references/widgets/advanced.md)**140 - When: Building complex widgets with async data, error boundaries, or performance optimizations141 - Covers: Loading states, error handling, memoization, code splitting142143---144145### 📚 Need Complete Examples?146147**When:** You want to see full implementations of common use cases148149- **[common-patterns.md](references/patterns/common-patterns.md)**150 - End-to-end examples: weather app, todo list, recipe browser151 - Shows: Server code + widget code + best practices in context152153---154155## Decision Tree156157```158What do you need?159160├─ New project from scratch161│ └─> quickstart.md (scaffolding + setup)162│163├─ OAuth / user authentication164│ └─> authentication/overview.md → provider-specific guide165│166├─ Simple backend action (no UI)167│ └─> Use Tool: server/tools.md168│169├─ Read-only data for clients170│ └─> Use Resource: server/resources.md171│172├─ Reusable prompt template173│ └─> Use Prompt: server/prompts.md174│175├─ Visual/interactive UI176│ └─> Use Widget: widgets/basics.md177│178└─ Deploy to production179 └─> deployment.md (cloud deploy, self-hosting, Docker)180```181182---183184## Core Principles1851861. **Tools for actions** - Backend operations with input/output1872. **Resources for data** - Read-only data clients can fetch1883. **Prompts for templates** - Reusable message templates1894. **Widgets for UI** - Visual interfaces when helpful1905. **Mock data first** - Prototype quickly, connect APIs later191192---193194## ❌ Common Mistakes195196Avoid these anti-patterns found in production MCP servers:197198### Tool Definition199200- ❌ Returning raw objects instead of using response helpers201 - ✅ Use `text()`, `object()`, `widget()`, `error()` helpers202- ❌ Skipping Zod schema `.describe()` on every field203 - ✅ Add descriptions to all schema fields for better AI understanding204- ❌ No input validation or sanitization205 - ✅ Validate inputs with Zod, sanitize user-provided data206- ❌ Throwing errors instead of returning `error()` helper207 - ✅ Use `error("message")` for graceful error responses208209### Widget Development210211- ❌ Accessing `props` without checking `isPending`212 - ✅ Always check `if (isPending) return <Loading/>`213- ❌ Widget handles server state (filters, selections)214 - ✅ Widgets manage their own UI state with `useState`215- ❌ Missing `McpUseProvider` wrapper or `autoSize`216 - ✅ Wrap root component: `<McpUseProvider autoSize>`217- ❌ Inline styles without theme awareness218 - ✅ Use `useWidgetTheme()` for light/dark mode support219220### Security & Production221222- ❌ Hardcoded API keys or secrets in code223 - ✅ Use `process.env.API_KEY`, document in `.env.example`224- ❌ No error handling in tool handlers225 - ✅ Wrap in try/catch, return `error()` on failure226- ❌ Expensive operations without caching227 - ✅ Cache API calls, computations with TTL228- ❌ Missing CORS configuration229 - ✅ Configure CORS for production deployments230231---232233## 🔒 Golden Rules234235**Opinionated architectural guidelines:**236237### 1. One Tool = One Capability238239Split broad actions into focused tools:240241- ❌ `manage-users` (too vague)242- ✅ `create-user`, `delete-user`, `list-users`243244### 2. Return Complete Data Upfront245246Tool calls are expensive. Avoid lazy-loading:247248- ❌ `list-products` + `get-product-details` (2 calls)249- ✅ `list-products` returns full data including details250251### 3. Widgets Own Their State252253UI state lives in the widget, not in separate tools:254255- ❌ `select-item` tool, `set-filter` tool256- ✅ Widget manages with `useState` or `setState`257258### 4. `exposeAsTool` Defaults to `false`259260Widgets are registered as resources only by default. Use a custom tool (recommended) or set `exposeAsTool: true` to expose a widget to the model:261262```typescript263// ✅ ALL 4 STEPS REQUIRED for proper type inference:264265// Step 1: Define schema separately266const propsSchema = z.object({267 title: z.string(),268 items: z.array(z.string()),269});270271// Step 2: Reference schema variable in metadata272export const widgetMetadata: WidgetMetadata = {273 description: "...",274 props: propsSchema, // ← NOT inline z.object()275 exposeAsTool: false,276};277278// Step 3: Infer Props type from schema variable279type Props = z.infer<typeof propsSchema>;280281// Step 4: Use typed Props with useWidget282export default function MyWidget() {283 const { props, isPending } = useWidget<Props>(); // ← Add <Props>284 // ...285}286```287288⚠️ **Common mistake:** Only doing steps 1-2 but skipping 3-4 (loses type safety)289290### 5. Validate at Boundaries Only291292- Trust internal code and framework guarantees293- Validate user input, external API responses294- Don't add error handling for scenarios that can't happen295296### 6. Prefer Widgets for Browsing/Comparing297298When in doubt, add a widget. Visual UI improves:299300- Browsing multiple items301- Comparing data side-by-side302- Interactive selection workflows303304---305306## Quick Reference307308### Minimal Server309310```typescript311import { MCPServer, text } from "mcp-use/server";312import { z } from "zod";313314const server = new MCPServer({315 name: "my-server",316 title: "My Server",317 version: "1.0.0",318});319320server.tool(321 {322 name: "greet",323 description: "Greet a user",324 schema: z.object({ name: z.string().describe("User's name") }),325 },326 async ({ name }) => text("Hello " + name + "!"),327);328329server.listen();330```331332---333334## Response Helpers335336| Helper | Use When | Example |337| ------------ | ---------------------- | --------------------------------------------- |338| `text()` | Simple string response | `text("Success!")` |339| `object()` | Structured data | `object({ status: "ok" })` |340| `markdown()` | Formatted text | `markdown("# Title\nContent")` |341| `widget()` | Visual UI | `widget({ props: {...}, output: text(...) })` |342| `mix()` | Multiple contents | `mix(text("Hi"), image(url))` |343| `error()` | Error responses | `error("Failed to fetch data")` |344| `resource()` | Embed resource refs | `resource("docs://guide", "text/markdown")` |345346---347348**Source:** [`Shubhamsaboo/awesome-llm-apps`](https://github.com/Shubhamsaboo/awesome-llm-apps) → `generative_ui_agents/ai-mcp-app-builder/apps/mcp-use-server/.agent/skills/mcp-apps-builder/SKILL.md`