← All tools

@mcp-use/cli

AI Agent
Popularity 65 Updated AI & Agents

The mcp-use CLI is a tool for building and deploying MCP servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.

npmauto-collected

Installation

npm
npm install -g @mcp-use/cli

Install with npm.

<div align="center" <div align="center" <a href="https://mcp-use.com" <picture <source media="(prefers-color-scheme: dark)" srcset="./static/logowhite.svg" <source media="(prefers-color-scheme: light)" srcset="./static/logoblack.svg" <img alt="mcp use logo" src="./static/logoblack.svg" width="60%" </picture </a </div &nbsp;

<p align="center" <a href="https://mcp-use.com/docs" alt="Documentation" <img src="https://img.shields.io/badge/mcp--use-docs-blue?labelColor=white" /</a <a href="https://manufact.com" alt="Website" <img src="https://img.shields.io/badge/made by-manufact.com-blue" /</a <a href="https://github.com/mcp-use/mcp-use/blob/main/LICENSE" alt="License" <img src="https://img.shields.io/github/license/mcp-use/mcp-use" /</a <a href="https://discord.gg/XkNkSkMz3V" alt="Discord" <img src="https://dcbadge.limes.pink/api/server/XkNkSkMz3V?style=flat" /</a <br/ <a href="https://mcp-use.com/docs/python" alt="Python docs" <img src="https://img.shields.io/badge/python-docs-blue?labelColor=white&logo=python" alt="Badge"</a <a href="https://pypi.org/project/mcpuse/" alt="PyPI Version" <img src="https://img.shields.io/pypi/v/mcpuse.svg"/</a <a href="https://pypi.org/project/mcpuse/" alt="PyPI Downloads" <img src="https://static.pepy.tech/badge/mcp-use" /</a <br/ <a href="https://mcp-use.com/docs/typescript" alt="Typescript Documentation" <img src="https://img.shields.io/badge/typescript-docs-blue?labelColor=white&logo=typescript" alt="Badge"</a <a href="https://www.npmjs.com/package/mcp-use" alt="NPM Version" <img src="https://img.shields.io/npm/v/mcp-use.svg"/</a <a href="https://www.npmjs.com/package/mcp-use" alt="NPM Downloads" <img src="https://img.shields.io/npm/dw/mcp-use.svg"/</a <br/ </p </div

[!TIP] Try the new beta v2 with create-mcp-use-app@beta: npx create-mcp-use-app@beta. See the beta README.

About

<bmcp-use</b is the fullstack MCP framework to build MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.

  • Build with mcp-use SDK (ts | py): MCP Servers and MCP Apps
  • Preview on mcp-use MCP Inspector (online | oss): Test and debug your MCP Servers and Apps
  • Deploy on Manufact MCP Cloud: Connect your GitHub repo and have your MCP Server and App up and running in production with observability, metrics, logs, branch-deployments, and more

Documentation

Visit our docs or jump to a quickstart (TypeScript | Python)

Skills for Coding Agents

Using Claude Code, Codex, Cursor or other AI coding agents? Install mcp-use skill for MCP Apps

Quickstart: MCP Servers and MCP Apps

<img src="./static/typescript.svg" height="14" style="margin-right:4px; top:-1px; position:relative;" align="center" / TypeScript

Build your first MCP Server or MPC App:

npx create-mcp-use-app@latest

Or create a server manually:

import { MCPServer, text } from "mcp-use/server";
import { z } from "zod";

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

server.tool({
  name: "get_weather",
  description: "Get weather for a city",
  schema: z.object({ city: z.string() }),

return text(Temperature: 72°F, Condition: sunny, City: ${city}); });

await server.listen(3000); // Inspector at http://localhost:3000/inspector