Platform

Agent Access (MCP Server)

Your firm's knowledge, in every AI tool your team uses. Connect Claude, Cursor, Gemini, Codex, or any MCP-capable AI assistant directly to your firm's BIM Monkey account — your drawing library, firm standards, code-compliance history, and firm memory. Your staff asks questions in the tools they already work in; the answers come from your own projects.

Included with every plan. Agent Access is part of every BIM Monkey subscription at mcp.bimmonkey.ai — authenticated with your firm's API key, honoring your data residency and Private AI configuration. See plans.

What it is

Agent Access is a hosted MCP server — the open protocol AI assistants use to call external tools. Add BIM Monkey as a connector and every conversation your team has with their AI assistant can pull real answers from your firm's account, mid-thought:

No code, no integration project — a URL and an API key.

Available tools

ToolWhat the agent gets
get_account_capabilitiesPlan tier, Private AI provider and entitled Claude models, data residency state.
query_libraryEvery uploaded CD set — sheet counts, building types, upload dates.
get_projectOne project's full sheet breakdown — numbers, titles, scales, notes, catalogued details.
search_detailsSearch the firm's detail library across all projects — by type, description, or key elements.
get_firm_standardsThe firm's synthesized drawing-standards document.
get_firm_memoryStanding rules and conventions saved from Banana Chat sessions.
add_firm_memorySave a new standing rule — additive, audited, attributed to agent access.
get_compliance_runsIBC code-compliance audit history, down to individual check results and narratives.
get_sheet_imageThe actual drawing — any sheet from the firm's library, rendered in the chat with a secure expiring view link. Served from the firm's own storage bucket under data residency.
add_project_todo / get_project_todosField-captured tasks — save a to-do from a site visit or client call; it lands on the project, waiting at your desk.

Connect

Your firm's API key is in app.bimmonkey.ai → Settings. It starts with bm_.

Claude (web, desktop & mobile apps)

Go to claude.ai → Settings → Connectors → Add custom connector and enter https://mcp.bimmonkey.ai/mcp. You'll be taken to a BIM Monkey authorization page — paste your firm's API key once and approve. The connector syncs to the Claude mobile apps automatically, so your firm's library, standards, and compliance history are available from your phone. Access uses secure rotating tokens; rotating your API key revokes all connected agents instantly.

Claude Code

claude mcp add --transport http bimmonkey https://mcp.bimmonkey.ai/mcp \
  --header "Authorization: Bearer bm_YOUR_KEY"

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "bim-monkey": {
      "url": "https://mcp.bimmonkey.ai/mcp",
      "headers": { "Authorization": "Bearer bm_YOUR_KEY" }
    }
  }
}

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "bim-monkey": {
      "httpUrl": "https://mcp.bimmonkey.ai/mcp",
      "headers": { "Authorization": "Bearer bm_YOUR_KEY" }
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "bim-monkey": {
      "type": "http",
      "url": "https://mcp.bimmonkey.ai/mcp",
      "headers": { "Authorization": "Bearer bm_YOUR_KEY" }
    }
  }
}

Everything else

MCP is a vendor-neutral standard, so the same two values work in any MCP-capable client — endpoint https://mcp.bimmonkey.ai/mcp, header Authorization: Bearer bm_YOUR_KEY:

BIM Monkey supports OAuth 2.1 with dynamic client registration, so OAuth-based connector directories (like claude.ai's, above) work out of the box. And because MCP is the industry standard, when a vendor adds MCP support their client works with BIM Monkey on day one, with no change on our side.

Security posture

Questions

Email [email protected]. Looking for the REST API for software integrations instead? See the API reference.