mcp-server-template logo

mcp-server-template

by chaso-pa

This is a template for creating MCP (Meta-Control Protocol) servers. It provides a basic structure and configuration for deploying and running MCP servers using different methods.

View on GitHub

Last updated: N/A

mcp-server-template

GitHub

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

PyPI

{
  "mcpServers": {
    "mcpservertemplate": {
      "command": "uvx",
      "args": ["mcpservertemplate"]
    }
  }
}

Local

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