Skip to content

MCP Quickstart

The MCP server exposes TheCorporation corporate operations — formation, cap tables, equity, governance, compliance, and more — as 12 tools with 64 operations that any MCP-compatible client can call.

Terminal window
npx -y @thecorporation/mcp-server

Add this to your Claude Desktop config (claude_desktop_config.json):

{
"mcpServers": {
"thecorporation": {
"command": "npx",
"args": ["-y", "@thecorporation/mcp-server"],
"env": {
"CORP_API_URL": "http://localhost:8000",
"CORP_API_KEY": "your-api-key"
}
}
}
}

For local mode (no server needed), set CORP_DATA_DIR instead of CORP_API_URL:

{
"mcpServers": {
"thecorporation": {
"command": "npx",
"args": ["-y", "@thecorporation/mcp-server"],
"env": {
"CORP_DATA_DIR": "./corp-data"
}
}
}
}

Once configured, your agent can use tools like:

  • entity — Form a corporation, add founders, advance formation
  • equity — Issue shares, SAFEs, manage cap table, run funding rounds
  • meeting — Schedule board meetings, cast votes, pass resolutions
  • finance — Create invoices, run payroll, submit payments
  • compliance — Track deadlines, file taxes, classify contractors

See the MCP Tools Reference for the complete tool and action list.