Skip to content

MCP Server Configuration

Overview

Model Context Protocol (MCP) servers provide specialized capabilities to AI tools. This directory contains the shared MCP configuration used by all supported tools.

Configuration File

mcp.json - Main MCP server definitions

Configured Servers

nx-mcp

Provides tools for working with Nx monorepo workspaces.

Documentation: nx-mcp.md

Capabilities:

  • Workspace architecture and project dependency analysis
  • Nx documentation retrieval
  • Project details and target information
  • Generator discovery and schema access
  • Task monitoring and CI/CD analysis

clickup

Provides direct integration with ClickUp workspaces for task management.

Documentation: clickup-mcp.md

Capabilities:

  • Task management (create, update, search, organize)
  • Time tracking and timer management
  • Search across tasks, docs, and comments
  • Status reports and portfolio summaries

Adding New MCP Servers

  1. Add server configuration to mcp.json:
json
{
  "mcpServers": {
    "server-name": {
      "command": "npx",
      "args": ["package-name@latest"]
    }
  }
}
  1. Create documentation file server-name.md with:

    • Server purpose and capabilities
    • Installation requirements
    • Usage examples
    • Configuration options
  2. Update .claude/settings.local.json to enable the server:

json
{
  "enabledMcpjsonServers": ["nx-mcp", "server-name"]
}
  1. Test the server with each AI tool to ensure compatibility.

Tool Support

  • Claude Code: Full support via .claude/settings.local.json
  • Cursor: Check Cursor documentation for MCP support
  • GitHub Copilot: MCP support status TBD