Skip to main content

Getting started with the Moderne MCP server

Installation

The following command installs both skills and the MCP server configuration for all detected coding agents:

mod config agent-tools install

This registers the MCP server with each detected agent so it starts automatically when the agent opens your project. The CLI handles the configuration details for each agent. For example, it runs claude mcp add for Claude Code and writes to ~/.cursor/mcp.json for Cursor.

To remove the MCP server configuration along with skills:

mod config agent-tools uninstall

Per-agent installation

If you only want to install agent tools for a specific coding agent, use the per-agent subcommands:

mod config agent-tools claude install
mod config agent-tools cursor install
mod config agent-tools copilot install

Each per-agent command installs both skills and the MCP server for that agent only. If the agent is not detected on your system, the command displays a message and exits without making changes.

The available per-agent subcommands are: claude, windsurf, cursor, copilot, amp, and codex.

To install only skills (without the MCP server) for all detected agents:

mod config agent-tools skills install

Supported agents

AgentMCP supportSkills supportMCP configuration
Claude CodeYesYesRegistered via claude mcp add
WindsurfYesYes~/.codeium/windsurf/mcp_config.json
CursorYesYes~/.cursor/mcp.json
GitHub CopilotYesYes.vscode/mcp.json and ~/.copilot/mcp-config.json
Sourcegraph AmpYesYesRegistered via amp mcp add
OpenAI CodexYesYesRegistered via codex mcp add

Next steps