drio
Open app

mcp-waifu

Source

Catalog onlyCatalog onlySTDIO

Overview

mcp-waifu is a tiny MCP server designed for retrieving information about anime characters.

To use mcp-waifu, set up the server and make API calls to retrieve character information based on your queries.

  • Lightweight and easy to deploy MCP server - Quick access to a database of anime character information - Supports various queries to fetch character details
  1. Integrating anime character data into applications or websites.
  2. Creating chatbots that provide information about anime characters.
  3. Developing tools for anime fans to explore character details.

Add to your AI client

Use these steps to connect mcp-waifu in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-waifu-zhoukuncheng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-waifu-zhoukuncheng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-waifu-zhoukuncheng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-waifu-zhoukuncheng": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-waifu-zhoukuncheng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-waifu-zhoukuncheng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-waifu-zhoukuncheng"
      ]
    }
  }
}
mcp-waifu — MCP Registry