Skip to main content
Glama
kedoupi

@kedoupi/yapi-mcp

by kedoupi

YApi MCP Enhanced

YApi MCP Enhanced

npm version Node.js Version License: MIT Test Coverage Build Status GitHub Issues GitHub Stars PRs Welcome

An enhanced Model Context Protocol (MCP) server for YApi that enables seamless AI integration

English | ็ฎ€ไฝ“ไธญๆ–‡

Empower Claude, Cursor, and other AI tools with intelligent YApi API management capabilities

๐Ÿš€ Quick Start โ€ข ๐Ÿ”ง Installation โ€ข ๐Ÿ’ป Platforms โ€ข ๐Ÿ“– Documentation โ€ข ๐Ÿค Contributing


๐ŸŒŸ Features

Feature

Description

Status

๐Ÿ” Smart Search

Advanced API search with flexible filtering options

โœ…

โœ๏ธ Interface Management

Create, read, update API interfaces seamlessly

โœ…

๐ŸŽฏ Project Organization

Manage projects and categories efficiently

โœ…

๐Ÿš€ Enhanced UX

Superior error handling and user feedback

โœ…

โšก Performance

Intelligent caching and optimized requests

โœ…

๐Ÿ›ก๏ธ Reliability

Comprehensive error handling and validation

โœ…

๐ŸŒ Multi-Platform

Claude Desktop, Cursor, Continue, and more

โœ…

๐Ÿ”„ Real-time Sync

Live synchronization with YApi changes

๐Ÿ”„

๐Ÿ“Š Analytics

Usage statistics and performance metrics

๐Ÿ“‹

Related MCP server: YApi MCP Server

๐Ÿš€ Quick Start

Prerequisites

  • Node.js 18+

  • YApi Server with API access

  • YApi Project Token

โšก One-line Installation

# Install globally
npm install -g @kedoupi/yapi-mcp

# Test your connection
npx @kedoupi/yapi-mcp test-connection

๐Ÿ”ง Installation

npm install -g @kedoupi/yapi-mcp
yarn global add @kedoupi/yapi-mcp
git clone https://github.com/kedoupi/yapi-mcp.git
cd yapi-mcp
npm install
npm run build

โš™๏ธ Configuration

  1. Copy environment template:

cp .env.example .env
  1. Configure your YApi settings:

# Required
YAPI_BASE_URL=https://your-yapi-domain.com
YAPI_PROJECT_TOKEN=your-project-token

# Optional  
LOG_LEVEL=info
CACHE_TTL=300
  1. Test connection:

npx @kedoupi/yapi-mcp test-connection

๐Ÿ’ป Platform Integration

๐Ÿค– Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "@kedoupi/yapi-mcp": {
      "command": "npx",
      "args": ["@kedoupi/yapi-mcp"],
      "env": {
        "YAPI_BASE_URL": "https://your-yapi-domain.com",
        "YAPI_PROJECT_TOKEN": "your-project-token",
        "LOG_LEVEL": "info"
      }
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

๐ŸŽฏ Cursor IDE

  1. Open Cursor Settings (Cmd/Ctrl + ,)

  2. Search for "MCP" or go to Extensions > MCP

  3. Add new MCP server:

{
  "name": "@kedoupi/yapi-mcp", 
  "command": "npx",
  "args": ["@kedoupi/yapi-mcp"],
  "env": {
    "YAPI_BASE_URL": "https://your-yapi-domain.com",
    "YAPI_PROJECT_TOKEN": "your-project-token"
  }
}

๐Ÿ”„ Continue (VS Code)

Add to .continue/config.json:

{
  "mcpServers": [
    {
      "name": "@kedoupi/yapi-mcp",
      "command": "npx", 
      "args": ["@kedoupi/yapi-mcp"],
      "env": {
        "YAPI_BASE_URL": "https://your-yapi-domain.com",
        "YAPI_PROJECT_TOKEN": "your-project-token"
      }
    }
  ]
}

๐Ÿง  Codeium

Add MCP server configuration in Codeium settings:

{
  "mcp_servers": {
    "yapi": {
      "command": "npx",
      "args": ["@kedoupi/yapi-mcp"], 
      "env": {
        "YAPI_BASE_URL": "https://your-yapi-domain.com",
        "YAPI_PROJECT_TOKEN": "your-project-token"
      }
    }
  }
}

๐Ÿ”— Other Platforms

The server supports any MCP-compatible AI tool. Check our integration guide for more platforms.

๐Ÿ› ๏ธ Available Tools

The server provides these tools for AI interaction:

Tool

Description

Parameters

yapi_get_projects

List available YApi projects

-

yapi_get_categories

Get project categories

project_id

yapi_get_interface

Get API interface details

interface_id

yapi_search_interfaces

Search APIs with filters

project_id, catid, q, page, limit

yapi_create_interface

Create new API interface

title, path, method, project_id, catid, ...

yapi_update_interface

Update existing interface

id, title, path, method, ...

yapi_clear_cache

Clear internal cache

-

yapi_search_interfaces

Advanced search with multiple filters:

  • project_id (optional): Filter by project

  • catid (optional): Filter by category

  • q (optional): Search query string

  • page (optional): Page number for pagination

  • limit (optional): Results per page (max 100)

yapi_create_interface / yapi_update_interface

Full interface management with support for:

  • Request/response body specifications

  • Headers and query parameters

  • HTTP methods (GET, POST, PUT, DELETE, etc.)

  • Interface status and descriptions

  • Category assignments

๐Ÿ—๏ธ Architecture

graph TD
    A[AI Tool] -->|MCP Protocol| B[YApi MCP Server]
    B -->|HTTP API| C[YApi Server]
    B -->|Cache| D[Memory Cache]
    B -->|Logging| E[Logger]
    B -->|Config| F[Environment]
  • YApiClient: HTTP client for YApi API interactions

  • MCP Server: Protocol handler for AI tool integration

  • Caching: Intelligent caching for performance optimization

  • Configuration: Environment-based configuration management

  • Error Handling: Comprehensive error management

๐Ÿงช Development

Local Development

# Clone repository
git clone https://github.com/kedoupi/yapi-mcp.git
cd yapi-mcp

# Install dependencies
npm install

# Development mode (watch files)
npm run dev

# Build project
npm run build

# Start server
npm start

Testing

# Run all tests
npm test

# Watch mode
npm run test:watch

# Coverage report
npm run test:coverage

# Unit tests only
npm run test:unit

# Integration tests
npm run test:integration

Code Quality

# Lint code
npm run lint

# Fix issues
npm run lint:fix

# Clean build
npm run clean

๐Ÿ“Š Performance

  • โšก Fast Response: < 100ms for cached requests

  • ๐Ÿ’พ Memory Efficient: < 50MB RAM usage

  • ๐Ÿ”„ Smart Caching: 5-minute TTL with cleanup

  • ๐Ÿ“ˆ Scalable: Handles 1000+ concurrent requests

๐Ÿค Contributing

We welcome all contributions! Here's how you can help:

๐Ÿ› Bug Reports

Found a bug? Open an issue

๐Ÿ’ก Feature Requests

Have an idea? Request a feature

๐Ÿ”ง Code Contributions

  1. Fork the repository

  2. Create feature branch (git checkout -b feature/amazing-feature)

  3. Commit changes (git commit -m 'Add amazing feature')

  4. Push to branch (git push origin feature/amazing-feature)

  5. Open a Pull Request

See our Contributing Guide for detailed information.

๐ŸŒŸ Other Ways to Help

  • โญ Star the repository

  • ๐Ÿ“ข Share with others

  • ๐Ÿ“ Improve documentation

  • ๐Ÿงช Test new features

๐Ÿ“‹ Roadmap

๐ŸŽฏ Current Focus

  • Enhanced Mock data support

  • Batch operations for multiple APIs

  • Real-time synchronization with YApi

  • Multi-project parallel management

๐Ÿ”ฎ Future Plans

  • GraphQL API support

  • Web-based configuration UI

  • Custom plugin system

  • Advanced analytics dashboard

  • Docker container support

๐Ÿ† Comparison

Feature

YApi MCP Enhanced

Original YApi MCP

Manual YApi

AI Integration

โœ… Advanced

โœ… Basic

โŒ None

Error Handling

โœ… Comprehensive

โš ๏ธ Limited

โš ๏ธ Manual

Caching

โœ… Smart TTL

โŒ None

โŒ None

Testing

โœ… 80%+ Coverage

โŒ None

โŒ Manual

TypeScript

โœ… Full Support

โš ๏ธ Partial

โŒ None

CLI Tools

โœ… Rich CLI

โŒ None

โŒ None

๐Ÿ“„ License

This project is licensed under the MIT License.

๐Ÿ†˜ Support

Need help? We're here for you:

๐Ÿ™ Acknowledgments

Special thanks to:

  • YApi Team for the excellent API management platform

  • Anthropic for the Model Context Protocol

  • All Contributors who make this project better

  • Open Source Community for inspiration and support


If this project helps you, please give us a โญ๏ธ

Made with โค๏ธ by kedoupi and contributors

๐Ÿ  Homepage โ€ข ๐Ÿ“š Docs โ€ข ๐Ÿ› Issues โ€ข ๐Ÿ’ฌ Discussions

A
license - permissive license
-
quality - not tested
F
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

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

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/kedoupi/yapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server