trimble-connect-mcp
Provides tools for interacting with Trimble Connect, enabling management of projects, folder trees, files, versions, members, groups, and permissions via the Core API v2.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@trimble-connect-mcpSign in to Trimble Connect, then list my projects."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trimble Connect MCP
A local (stdio) MCP server that gives Claude access to Trimble Connect: projects, folder trees, files, versions, members, groups and permissions — 40 tools over the Core API v2.
Contents
Related MCP server: ClaudeHopper
Requirements
Item | Requirement |
OS | Windows 10/11 (macOS and Linux should work but are untested) |
Host | Claude Desktop, Codex, or any MCP client that speaks stdio |
Python | 3.10+ |
uv | |
Account | A Trimble ID with access to your Trimble Connect projects |
Step 1 — Install
git clone https://github.com/nhantruong96/trimble-connect-mcp.git
cd trimble-connect-mcp
uv syncCheck that the server imports:
uv run python -c "import server; print('OK')"Run uv sync again after every git pull.
Step 2 — Register a Trimble application
Go to the Trimble Developer Console and create an application.
Copy the Client ID and Client Secret.
Under Callback URLs, add exactly:
http://localhost:8385/callbackIf port 8385 is already taken, change it in both places: the Callback URL in the Developer Console and
TC_REDIRECT_URIin your config (for examplehttp://localhost:8590/callback).
The redirect URI must match character for character — http://localhost without
a port, 127.0.0.1 instead of localhost, or a missing /callback will all be
rejected.
Step 3 — Configure Claude Desktop
Open %APPDATA%\Claude\claude_desktop_config.json (or Settings → Extensions)
and add the block below, replacing the paths and the client id/secret:
{
"mcpServers": {
"trimble-connect": {
"command": "C:\\path\\to\\trimble-connect-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\trimble-connect-mcp\\server.py"],
"env": {
"TC_CLIENT_ID": "<client id>",
"TC_CLIENT_SECRET": "<client secret>",
"TC_APP_NAME": "Trimble_Connect_MCP",
"TC_REDIRECT_URI": "http://localhost:8385/callback",
"TC_ENABLE_WRITE": "1"
}
}
}
}A ready-made template is in
claude_desktop_config.example.json.
Never commit your real config — it holds the client secret.
Quit Claude Desktop completely, then reopen it.
Step 4 — First run
Ask in plain language:
"Sign in to Trimble Connect, then list my projects."
The browser opens the Trimble ID page; once you sign in the tools are ready.
Tokens refresh automatically — you only sign in once.
After 90 seconds
tc_loginreturnspending=trueplus anauth_url. Finish signing in in the browser, then ask Claude to calltc_auth_status.If you abandon a sign-in, call
tc_login_cancelbefore starting a new one.To sign out, delete
%USERPROFILE%\.trimble_connect_mcp\tokens.json.
The region (NA / EU / AP) is detected automatically and cached in
%USERPROFILE%\.trimble_connect_mcp\.
Write mode
The server is read-only by default. Two gates protect every write:
Set
TC_ENABLE_WRITE=1in theenvblock of your config and restart the host. Verify withtc_write_status.Destructive tools (delete, overwrite a version, replace an ACL, remove a member) additionally require
confirm=true.
There is no restore tool — Core API 2.0 has no undelete endpoint. Deleted items can only be recovered by hand in the Trimble Connect web interface.
Other MCP clients
Take the
.venv\Scripts\python.exeandserver.pypaths from Step 3.Register a stdio server using them as
commandandargs.Set the same environment variables as in Step 3.
Restart the client.
To check that the server starts at all:
uv run python server.pyEnvironment variables
Variable | Default | Notes |
| — | required |
| — | required |
|
| used in the OAuth scope ( |
|
| must match the URL registered in the Developer Console |
|
| where downloaded files are saved |
|
| where tokens and the region cache are stored |
| (off) | set to |
Tools
Read — always available
Tool | What it does |
| Sign in with Trimble ID in the browser (OAuth2 + PKCE), callback |
| Cancel a pending sign-in and release the callback port |
| Sign-in status, including |
| Whether write mode is on, and how to turn it on |
| List the server regions (NA / EU / AP) |
| List projects across every region, filter by name, |
| Details of one project |
| Project members and their roles |
| The project's roles (ADMIN / USER) |
| Contents of a folder (defaults to the project root) |
| Folder tree as text, bounded by depth and entry count |
| File metadata |
| Version history of a file |
| Download a file (default |
| Keyword search |
| Read the ACL of a folder or file |
| Project groups and their members |
| Raw GET against any Core API endpoint (todos, views, releases, activities…) |
Write — folders and files (needs TC_ENABLE_WRITE=1)
Tool | What it does | Gate |
| Create one folder | — |
| Create a whole tree (e.g. a CDE) from paths like | — |
| Rename a folder or file | — |
| Move a folder or file to another folder | — |
| Copy a file (server-side) | — |
| Copy a folder with its contents (the server walks the tree; bounded by | — |
| Upload a NEW file (fails if the name already exists) | — |
| Upload a NEW VERSION of an existing file |
|
| Delete a folder or file ( |
|
Write — permissions
Tool | What it does | Gate |
| Grant | — |
| Drop users or groups from the ACL (back to inherited access) |
|
| Replace the ENTIRE ACL (advanced — wipes existing entries) |
|
Trimble Connect has only three levels: READ, FULL_ACCESS, NO_ACCESS (files
do not support NO_ACCESS). The special id tc-groups:* means every project
member. The underlying PATCH .../permissions overwrites the whole ACL, which
is why tc_grant_permissions / tc_remove_permissions are preferred over
tc_set_permissions.
Write — members and groups
Tool | What it does | Gate |
| Invite a user to the project by email ( | — |
| Change a member's role | — |
| Remove a member from the project |
|
| Create or rename a group | — |
| Add members to a group | — |
| Remove members from a group |
|
| Delete a group (any permission granted to it is lost) |
|
| Raw POST/PATCH/PUT/DELETE for endpoints with no dedicated tool |
|
Troubleshooting
Symptom | Fix |
| The URL in the Developer Console must match |
| The port is taken — call |
Browser shows | The sign-in wait expired (10 minutes) — call |
| Not an error — finish signing in, then call |
|
|
| A destructive tool needs |
HTTP 403 | Your Trimble account has no access to that project |
HTTP 409 / 412 on create or upload | An item with that name exists — to overwrite, use |
No projects listed | Run |
| You are on |
An endpoint has no dedicated tool (ToDos, Views, Releases, Activities…) | Use |
Contributing
Development setup, repository layout, and how to add a tool are in CONTRIBUTING.md.
The upstream API is https://app.connect.trimble.com/tc/api/2.0 (master, North
America); other regions are discovered through the /regions endpoint.
License
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server built with mcp-framework that allows users to create and manage custom tools for processing data, integrating with the Claude Desktop via CLI.Last updated625MIT
- Alicense-qualityDmaintenanceAI-powered MCP server that enables Claude and other LLMs to interact directly with construction documents, drawings, and specifications through advanced RAG and hybrid search capabilities.Last updated7MIT
- Flicense-qualityFmaintenanceAn MCP server that allows Claude to interact with local LLMs running in LM Studio, providing access to list models, generate text, and use chat completions through local models.Last updated13
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server built with the mcp-framework for developing and managing custom tools. It provides a structured foundation for building and integrating modular components like data processors and API clients into Claude Desktop.Last updated24
Related MCP Connectors
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nhantruong96/trimble-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server