YAPI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@YAPI MCP ServerShow me the details of project 123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
YAPI MCP Server
A Model Context Protocol (MCP) server for YAPI API Platform integration. Enable AI assistants to interact with YAPI seamlessly.
π Quick Start
Recommended: Use with npx (No installation required)
Get your YAPI Token: Login to your YAPI platform and get the token from project settings
Configure Claude Desktop: Add the following to your MCP settings file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"yapi": {
"command": "npx",
"args": [
"-y",
"@criller/yapi-mcp-server",
"--yapi-base-url=http://your-yapi-server.com",
"--yapi-token=your-token-here"
]
}
}
}Start using: Restart Claude Desktop and you're ready to go!
Related MCP server: Mcp-Swagger-Server
β¨ Features
This MCP server provides 11 tools covering all YAPI Open APIs:
Project Management (1 tool)
yapi_get_project- Get project information
Category Management (2 tools)
yapi_add_category- Add interface categoryyapi_get_category_menu- Get category menu list
Interface Management (7 tools)
yapi_get_interface- Get interface detailsyapi_list_interfaces_by_cat- List interfaces by categoryyapi_add_interface- Add new interfaceyapi_update_interface- Update interfaceyapi_get_interface_list- Get interface listyapi_update_interface_basic- Update interface basic infoyapi_get_interface_cat_list- Get interface menu tree
Data Import (1 tool)
yapi_import_data- Import data (Swagger, HAR, Postman, etc.)
π Usage Examples
Once configured, you can interact with YAPI using natural language:
"Show me the details of project 123"
"List all categories in project 456"
"Get the interface with ID 789"
"Add a new category called 'User Management' to project 123"
"Import this Swagger file to project 456"
π§ Alternative Configuration Methods
Method 1: Using Environment Variables
{
"mcpServers": {
"yapi": {
"command": "npx",
"args": ["-y", "@criller/yapi-mcp-server"],
"env": {
"YAPI_BASE_URL": "http://your-yapi-server.com",
"YAPI_TOKEN": "your-token-here"
}
}
}
}Method 2: Local Development
For development or debugging:
git clone https://github.com/criller/yapi-mcp-server.git
cd yapi-mcp-server
npm install
cp .env.example .env
# Edit .env and set your YAPI_BASE_URL and YAPI_TOKEN
npm run devThen configure Claude Desktop:
{
"mcpServers": {
"yapi": {
"command": "node",
"args": ["/absolute/path/to/yapi-mcp-server/dist/index.js"],
"env": {
"YAPI_BASE_URL": "http://your-yapi-server.com",
"YAPI_TOKEN": "your-token"
}
}
}
}π οΈ Development
Type Check
npm run typecheckBuild
npm run buildTesting with MCP Inspector
npx @modelcontextprotocol/inspector npx -y @criller/yapi-mcp-serverπ Project Structure
yapi-mcp-server/
βββ src/
β βββ index.ts # MCP Server entry point
β βββ config.ts # Configuration management
β βββ types.ts # TypeScript types
β βββ yapi-client.ts # YAPI API client
β βββ tools/ # MCP tools
β βββ project-tools.ts # Project management
β βββ category-tools.ts # Category management
β βββ interface-tools.ts# Interface management
β βββ import-tools.ts # Data import
βββ package.json
βββ tsconfig.json
βββ README.mdπ€ Contributing
Contributions are welcome! Please check CONTRIBUTING.md for details.
π License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/criller/yapi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server