
mcp-use / skills
★ 1A skill package that teaches your agent 2 capabilities — every one documented and browsable below, no GitHub required · by mcp-use.
Each skill below is one capability this package teaches your agent. Install the whole package, or open a skill to install just that one.
Build ChatGPT apps with interactive widgets using mcp-use and OpenAI Apps SDK. Use when creating ChatGPT apps, building MCP servers with widgets, defining…
2 files — installable on its own
Build production-ready MCP servers with the mcp-use framework and automatic widget registration. Bootstrap with npx create-mcp-use-app and choose from three templates: starter (full-featured), mcp-apps (ChatGPT-optimized), or blank (minimal) Define tools, resources, and prompts using Zod schemas with automatic validation and clear parameter descriptions Automatically register React widgets from the resources/ folder as MCP Tools and Resources with dual-protocol support for MCP Apps and...
2 files — installable on its own
mcp-use Skills
Official skills collection for the mcp-use framework. Skills are reusable capabilities that enhance Claude's ability to build and work with Model Context Protocol (MCP) servers.
What are Skills?
Skills are folders containing instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Each skill teaches Claude how to complete specific tasks in a repeatable way.
For more information about Agent Skills, visit:
- agentskills.io - Official specification
- skills.sh - Skills platform and leaderboard
- Anthropic's Skills Guide
Available Skills
mcp-builder
Build production-ready MCP servers with the mcp-use framework. This skill provides:
- Quick start with
npx create-mcp-use-app - Defining tools, resources, and prompts
- Local testing with Inspector UI
- Tunneling for testing with ChatGPT
- Deployment to mcp-use Cloud
- Best practices and common patterns
Use when: Creating MCP servers, defining tools/resources/prompts, deploying MCP servers, or working with the mcp-use framework.
chatgpt-app-builder
Build custom ChatGPT apps and GPTs with actions and best practices. This skill provides:
- GPT configuration and instructions
- OpenAPI schema design for actions
- Authentication setup (API Key, OAuth, Custom)
- Function calling patterns
- Response formatting and error handling
- Testing and deployment guidance
- Common patterns and examples
Use when: Creating ChatGPT apps, building custom GPTs, defining GPT actions, integrating APIs with ChatGPT, or working with OpenAI function calling.
Installation
Claude Code
Register this repository as a marketplace:
/plugin marketplace add mcp-use/skillsThen install skills:
# Install all skills
/plugin install all-skills@mcp-use
# Or install individual skills
/plugin install mcp-builder@mcp-use
/plugin install chatgpt-app-builder@mcp-useOr browse and install via the UI:
- Run
/plugin marketplace add mcp-use/skills - Select
Browse and install plugins - Select
mcp-use - Choose a skill to install
- Select
Install now
Via skills.sh
npx skills add mcp-use/skillsClaude.ai
- Go to your Claude.ai project settings
- Navigate to Skills section
- Upload the
skills/folder or individual skill folders - Skills will be available in your conversations
Cursor / Windsurf
- Clone this repository
- Reference skills in your
.cursorrulesor project settings - Skills will be available when working in the IDE
Creating Your Own Skills
Use the template at template/SKILL.md as a starting point:
cp template/SKILL.md skills/my-new-skill/SKILL.mdThen customize:
- Update the YAML frontmatter with
nameanddescription - Write clear instructions in the markdown body
- Include examples and best practices
- Add any supporting files (scripts, data, etc.)
- Test with Claude to ensure it works correctly
See spec/README.md for detailed information about the SKILL.md format.
Repository Structure
.
├── .claude-plugin/ # Claude Code marketplace configuration
├── skills/ # Individual skills
│ └── mcp-builder/ # MCP server building skill
│ ├── SKILL.md # Skill definition
│ └── LICENSE.txt # Skill license
├── template/ # Template for creating new skills
│ └── SKILL.md
├── spec/ # Agent Skills specification reference
│ └── README.md
├── LICENSE # Repository license (Apache 2.0)
└── README.md # This fileSkills Platform Integration
This repository is compatible with:
- Claude Code: Via
.claude-plugin/marketplace.json - skills.sh: Via
npx skills add mcp-use/skills - Claude.ai: Manual upload of skill folders
- Cursor/Windsurf: Local skill references
Contributing
Skills follow the Agent Skills specification. When contributing:
- Fork this repository
- Create a new skill folder under
skills/ - Include a
SKILL.mdfile with proper frontmatter - Add a
LICENSE.txtif using a different license - Test thoroughly with Claude
- Submit a pull request
Upcoming Skills
- More skills coming soon!
Learn More
- mcp-use Documentation: docs.mcp-use.com
- mcp-use GitHub: github.com/mcp-use/mcp-use
- Discord: mcp-use.com/discord
- MCP Protocol: modelcontextprotocol.io
License
This repository is licensed under the Apache License 2.0. See LICENSE for details.
Individual skills may have their own licenses specified in their respective LICENSE.txt files.
Install the whole package (2 skills):
npx skills add https://github.com/mcp-use/skillsOr install a single skill:
npx skills add https://github.com/mcp-use/skills --skill <name>Pick the skill name from the Skills tab — each entry there installs independently.