Rootr MCP Server
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., "@Rootr MCP Serversearch for deployment runbooks"
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.
Rootr CLI + MCP Server
Connect your team's living knowledge base to Claude, ChatGPT, and any AI agent.
Rootr is a team knowledge & document workspace. This package is the official way to give an AI agent direct, permissioned access to your team's shared documents, structured data, and institutional knowledge — so your assistant already knows what your team knows, instead of you copy-pasting context into every conversation.
There are two ways to connect.
1. Remote connector — no install (recommended)
Rootr hosts a remote MCP endpoint over Streamable HTTP. In Claude Desktop, claude.ai, or ChatGPT, add a connector with just the URL and sign in with OAuth:
https://rootr.io/mcpNo JSON, no CLI, no tokens to paste. Log in, pick the workspace, and your team's docs are available to the assistant with your existing permissions. See the docs.
Related MCP server: AgentTrust MCP Server
2. Local CLI / stdio MCP server (rootr-cli)
For the shell, or for agents that speak to a local stdio MCP server (e.g. Claude Code):
npm install -g rootr-cli
rootr config --api-key rootr_xxxx --workspace ws_xxx
rootr mcp # start the stdio MCP serverThe rootr command also works standalone: ls, read, write, append, edit,
search, ask, ws, config.
Pure Node.js ESM, no build step. Requires Node 18+ (uses the built-in fetch).
Homepage: https://rootr.io
Docs: https://rootr.io/en/docs
Install
Run it straight from a clone, or install globally.
npm install -g rootr-cli
rootr --help
# or from source
cd cli && npm install
node bin/rootr.js --helpConfiguration
Precedence: environment variables > ~/.rootr/config.json
Env var | Config key | Description |
|
| A |
|
| Workspace id |
|
| Defaults to |
Save to the config file (created with chmod 600):
rootr config --api-key rootr_xxxxxxxxxxxxxxxx --workspace ws_123
# optional on-prem / dev base URL
rootr config --api-key rootr_xxx --workspace ws_123 --base-url https://dev.rootr.io/api/v1
rootr config # show current config (api key shown masked)Two kinds of key
Rootr API keys come in two kinds, and some tools require a specific one:
Workspace key — scoped to a single workspace (
docs:read/docs:write/graph:read/ask/webhooks:manage). Enough for most document, LOG, issue, webhook, and ask tools.Account key (PAT) — acts across your whole account. With the
workspaces:createscope it can create new workspaces (rootr_create_workspace). Using a workspace key for an account-level action returns a403with a hint that an account key is required.
CLI usage
Path rule: an argument starting with / is treated as a path (resolved to a node id
via the by-path API; needs a workspace set). Otherwise it is treated as a node id.
rootr ls # whole tree (TYPE<TAB>path)
rootr ls /notes # subtree
rootr read /notes/todo.md # markdown to stdout
rootr read /notes/todo.md --json # full JSON incl. metadata
echo "# Title" | rootr write /notes/new.md # full replace (creates if missing)
rootr write /notes/new.md --file ./local.md
rootr append /notes/log.md "Deployed today" # safe, conflict-free
rootr append /notes/log.md "- one more" --heading "## Todo"
rootr edit /notes/todo.md --find "- [ ] ship" --replace "- [x] ship"
rootr search "deploy runbook" # path — snippet
rootr ws # list workspaces (id<TAB>name)
rootr ask "why did latency go up after last week's deploy?"append never rewrites the whole document, so it is safe to run concurrently. write
supports --if-match "\"etag\"" for optimistic concurrency (a 412 means the document
changed underneath you — re-read and retry). edit returns 409 if --find is missing or
not unique; pass --all to replace every match. ask queries the workspace knowledge graph
(GraphRAG) and prints the answer plus citations (document path: quote).
Use as an MCP server
rootr mcp starts a Model Context Protocol server over stdio. It exposes 80+ tools
across the full Rootr surface, so an agent can author and query every node type:
Group | Tools (examples) |
Documents |
|
Publishing & comments |
|
Workspaces & scaffolding |
|
Databases (typed columns + board/table views) |
|
Spreadsheets (formulas) |
|
Whiteboards |
|
Forms |
|
CRM |
|
Presentations |
|
LOG datastores |
|
Issues |
|
Webhooks |
|
GraphRAG ask |
|
Images |
|
Tool descriptions steer agents to prefer rootr_append / rootr_edit over the destructive
rootr_write. Tools that take a workspace argument fall back to ROOTR_WORKSPACE (or the
config default) when it is omitted. All tool schemas are in English; JSON-returning tools
respond with pretty-printed JSON text.
Register in Claude Code / Claude Desktop
Add to ~/.claude.json (Claude Code) or your Claude Desktop MCP config:
{
"mcpServers": {
"rootr": {
"command": "rootr",
"args": ["mcp"],
"env": {
"ROOTR_API_KEY": "rootr_xxxxxxxxxxxxxxxx",
"ROOTR_WORKSPACE": "ws_123"
}
}
}
}(If you did not install globally, use "command": "node" and
"args": ["/path/to/rootr-cli/bin/rootr.js", "mcp"].)
Error handling
On a non-2xx response the CLI prints the API message (when present) to stderr and exits 1:
401/403— check the API key / workspace scope412— document changed since you read it (If-Match mismatch): re-read and retry409— the server's reason is shown verbatim (e.g.editfind not found / not unique)
Layout
bin/rootr.js— entry point, command dispatchlib/config.js— config load/savelib/client.js— Rootr REST API clientlib/resolve.js— shared path/id target resolutionlib/mcp.js— MCP stdio server, assembles all tool groupslib/mcp-tools/*— one module per tool group (documents, workspaces, databases, spreadsheets, whiteboards, forms, crm, presentations, logs, issues, webhooks, ask, misc)
Dependencies: @modelcontextprotocol/sdk (MCP server) and zod (tool input schemas). The
CLI core has no external dependencies. No build step — pure ESM JavaScript.
Made by Inspirio · rootr.io · info@inspirio.co
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/inspirio-co/rootr-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server