mcp-server-template logo

mcp-server-template

by glows

mcp-server-template provides a template for creating MCP (Meta Control Plane) servers. It includes configurations for installation and execution from GitHub, PyPI, and local environments.

View on GitHub

Last updated: N/A

mcp-server-template

GitHub

{
  "mcpServers": {
    "mcp-server-template": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/narumiruna/mcp-server-template",
        "mcp-server-template"
      ]
    }
  }
}

PyPI

{
  "mcpServers": {
    "mcp-server-template": {
      "command": "uvx",
      "args": ["mcp-server-template"]
    }
  }
}

Local

{
  "mcpServers": {
    "mcp-server-template": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/home/<user>/workspace/mcp-server-template",
        "mcp-server-template"
      ]
    }
  }
}