drio
Open app

Mcp Servers Pouch

Source

Catalog onlyCatalog onlySTDIO

Overview

Mcp Servers Pouch is a tool designed for managing and configuring server environments, particularly for users of the Claude Desktop application.

To use Mcp Servers Pouch, follow the setup instructions provided in the official documentation and configure the necessary settings in the configuration file based on your operating system.

  • Easy setup for server management on both Mac and Windows. - Customizable configuration files for different server commands and arguments. - Supports running Python scripts for server operations.
  1. Managing server configurations for research projects.
  2. Running Python scripts to automate server tasks.
  3. Setting up a local development environment for server applications.

Add to your AI client

Use these steps to connect Mcp Servers Pouch 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-servers-pouch-kohei25": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

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-servers-pouch-kohei25": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-pouch-kohei25": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

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-servers-pouch-kohei25": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-pouch-kohei25": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-pouch-kohei25": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-pouch-kohei25"
      ]
    }
  }
}

FAQ

What operating systems does Mcp Servers Pouch support?

Mcp Servers Pouch supports both Mac and Windows operating systems.

Is there a detailed documentation available?

Yes! You can find the official documentation [here](https://modelcontextprotocol.io/quickstart/user).

Can I customize the server commands?

Yes! The configuration files allow you to customize commands and arguments as needed.