PluginBench
MCP Server

Tiny Go MCP Server MCP Server

io.github.kioie/tiny-go-mcp

What is the Tiny Go MCP Server MCP server?

Demo stdio MCP server (tools, resource, prompt) for tinymcp tests—not production use.

How to install Tiny Go MCP Server

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "tiny-go-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/kioie/tiny-go-mcp:1.1.2"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "tiny-go-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/kioie/tiny-go-mcp:1.1.2"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "tiny-go-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/kioie/tiny-go-mcp:1.1.2"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "tiny-go-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/kioie/tiny-go-mcp:1.1.2"
      ]
    }
  }
}
Claude Code
claude mcp add tiny-go-mcp -- docker run -i --rm ghcr.io/kioie/tiny-go-mcp:1.1.2

Related MCP servers

Local MCP memory for coding agents. SQLite on your machine — preferences persist across chats.

View repository →