Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.75 KB

File metadata and controls

37 lines (28 loc) · 1.75 KB

MCP Servers

Install helpers, configuration snippets, and setup notes for common Model Context Protocol (MCP) servers.

Structure

mcp/
└── servers/
    └── <server-name>/
        ├── README.md        # What the server does, prerequisites
        ├── install.sh       # Optional: automated install / setup script
        └── config/
            ├── claude.json  # Snippet for claude_desktop_config.json
            └── copilot.json # Snippet for .vscode/mcp.json / copilot config

Adding a Server

  1. Create mcp/servers/<server-name>/README.md describing the server.
  2. Add a config/ directory with ready-to-paste config snippets for each platform.
  3. Optionally add an install.sh for any non-trivial setup steps.

Available Servers

Server Description
witan Team-wide shared knowledge graph: memory, workflow projects, task tracking, and the umbrella CLI. Uses witan serve to mount both memory and code tools in one MCP entry.
witan-code Tree-sitter code graph (Layer 2): indexes repo symbols and their relationships. Can run standalone or be mounted automatically by witan serve.
toolhive-swe Remote, hosted ToolHive SWE MCP server, one installation per environment tier (ci/qa/production) each at its own hostname (Streamable HTTP + Keycloak OAuth). No local process — just config + browser auth.

Resources