Connect to ChatGPT or Claude
Add Aginera as an MCP server and run takeoffs from a conversation.
Aginera MCP is a remote MCP server at https://mcp.aginera.ai/mcp. Add it once to your agent, sign in to Aginera, choose your organization and approve the permissions — refresh tokens keep the connection alive, so you only do this once.
Claude
Claude connects to Aginera as a custom connector over remote MCP (Streamable HTTP + OAuth).
Claude Desktop / claude.ai
- Settings → Connectors → Add custom connector.
- Name it
Agineraand set the URL tohttps://mcp.aginera.ai/mcp. - Save, then click Connect — Claude opens Aginera's sign-in in your browser.
- Sign in, pick your organization, and Allow the permissions shown. You're returned to Claude.
- Aginera's tools now appear in the connector. Ask, e.g. "Take off the electrical scope from the latest drawing set for the Marriott project and summarize conduit by panel."
Claude Code (CLI)
claude mcp add --transport http aginera https://mcp.aginera.ai/mcp
Then run any Aginera prompt; Claude Code opens the browser sign-in on first use.
ChatGPT
ChatGPT connects to Aginera as a custom MCP app (Developer mode / Plugins → Connectors).
- Settings → Plugins → New (the + in the plugins panel).
- Name
Aginera; Description "Turn construction drawings into takeoffs, measured routes and schedules." - Connection: leave Server URL selected and enter
https://mcp.aginera.ai/mcp. - Authentication: choose OAuth — Aginera's settings are discovered automatically (open Advanced OAuth settings to review scopes).
- Read the custom-server notice, tick I understand and want to continue, and click Create.
- Sign in to Aginera, choose your organization, and Allow the scopes.
- The Aginera app now lists its Actions (
add_document,run_takeoff, …). Write actions (running takeoffs, exports) require a plan that allows them.
GitHub Copilot / VS Code
VS Code speaks MCP as well. Add a server in .vscode/mcp.json:
{
"servers": {
"aginera": { "type": "http", "url": "https://mcp.aginera.ai/mcp" }
}
}
Reload the window; Copilot Chat in agent mode prompts the OAuth sign-in on first use, then exposes Aginera's tools.
What the tools do
| Tool | Purpose |
|---|---|
search_projects, get_project, create_project | Find or create projects by name, reference or your customer |
add_document, list_documents, get_document | Import drawings by URL and check readiness |
run_takeoff, get_takeoff | Start a takeoff (uses credits) and follow progress |
get_takeoff_items, get_takeoff_routes, get_schedules | Read quantities, measured routes and schedules |
review_takeoff_item | Accept, reject or override an item |
create_export | CSV / Excel / JSON |
get_usage, get_capabilities | Credits, limits and what your account can do |
Try: "Take off the electrical scope from the latest drawing set for the Marriott project and summarize conduit by panel."
Permissions and billing
You grant scopes on the consent screen; billable tools (running takeoffs, exports in some formats) are annotated so the agent asks before spending credits. Usage on your Aginera account is billed exactly as if you had clicked the same action in the web app. Disconnect at any time from Settings → Developer → Agent connections.