AI Integrations: MCP Server

pacwich provides its own MCP server via npx pacwich mcp-server. This can be used with any tooling that supports MCP.

When you set up the MCP server with your tool, an agent has access to the server's resources that provide it complete documentation, the same documentation also available via AGENTS.md files or skills.

Agents that read the server instructions on initialization will automatically have knowledge of pacwich as a package with a brief overview and introduction to the CLI, kept very brief due to tools' propensity to truncate these instructions.

Example Integrations

Cursor

Add the following to your .cursor/mcp.json file for the project you're working in.

{
  "mcpServers": {
    "pacwich": {
      "command": "/bin/sh",
      "args": [
        "-c",
        "exec npx pacwich mcp-server"
      ]
    }
  }
}

Claude Code

Add the following to your .mcp.json file for a directory you're working in.

{
  "mcpServers": {
    "pacwich": {
      "command": "npx",
      "args": [
        "pacwich",
        "mcp-server"
      ]
    }
  }
}