stablebaseline-mcp
Allows creating and inserting Excalidraw freehand whiteboard diagrams into documents.
Allows creating and inserting Mermaid diagrams (flowcharts, sequence diagrams, Gantt charts, etc.) into documents.
Allows uploading CSV/JSON/TSV data to generate Vega visualizations and embed them in documents.
Stable Baseline — MCP Server
The simplest, most complete, end-to-end agent-managed company brain.
Website · Sign up free · Docs · Tool catalogue · llms.txt
How to use Stable Baseline
Pick the surface that matches how you work — every option talks to the same handlers, the same auth, the same data:
Surface | What it's for | Install |
MCP server | AI agents (Claude Code, Cursor, Windsurf, ChatGPT, Gemini, Smithery, …). Native protocol with prompts and resources. | Endpoint: |
REST API | Any HTTP client, Postman, OpenAPI codegen, Zapier-style integrators. Tool-RPC + idiomatic resource routes. | Live spec: |
TypeScript SDK | Node, browsers, Deno, Bun. Typed |
|
CLI ( | Shells, scripts, CI/CD. |
|
Python SDK | Python apps, data work. Sync + async clients. |
|
196 tools across 18 categories. Same brain, same Knowledge Graph, same RBAC — every surface.
One workspace where humans and any MCP-compatible AI agent — Claude Code, Cursor, Windsurf, VS Code, Warp, OpenCode, Antigravity, OpenAI Codex, ChatGPT Developer Mode, Gemini CLI/Extensions, and more — co-author living documents (Markdown-native with a rich superset on top), 40+ visual diagrams (Mermaid, BPMN 2.0, D2, PlantUML, GraphViz, ELK architecture, sequence, state, ERD, Gantt, Excalidraw freehand), plans, timelines, tasks, improvements, and a self-learning Knowledge Graph that IS the company brain.
Lean, fast, secure, and affordable — flexible enough for one person organising a personal mind, through to small businesses, growing businesses, and enterprise.
196 MCP tools across 18 categories let an agent drive end-to-end: sign-up → billing → org/workspace/project → members → teams → permissions → brain scope → docs → diagrams → whiteboards → plans, all without a human touching the UI.
Related MCP server: flaiwheel
Endpoint
https://api.stablebaseline.io/functions/v1/cloud-serve/mcpTransport: Streamable HTTP (with SSE fallback)
Auth: OAuth 2.1 with Dynamic Client Registration, or Bearer API key (sta_*)
Discovery manifest: https://stablebaseline.io/.well-known/mcp.json
Quick start
Mint an API key (skip OAuth)
Sign up free — no credit card
Go to Settings → MCP keys and click Generate
Copy the
sta_...key
(Or skip this — every client below also supports interactive OAuth on first call.)
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"stable-baseline": {
"url": "https://api.stablebaseline.io/functions/v1/cloud-serve/mcp",
"headers": {
"Authorization": "Bearer sta_YOUR_KEY"
}
}
}
}Or use the Claude Desktop OAuth flow — set just url and Claude will prompt you to authorize on first call.
Claude Code
claude mcp add --transport http stable-baseline \
https://api.stablebaseline.io/functions/v1/cloud-serve/mcp \
--header "Authorization: Bearer sta_YOUR_KEY"Or via OAuth:
claude mcp add --transport http stable-baseline \
https://api.stablebaseline.io/functions/v1/cloud-serve/mcpCursor
~/.cursor/mcp.json:
{
"mcpServers": {
"stable-baseline": {
"url": "https://api.stablebaseline.io/functions/v1/cloud-serve/mcp",
"headers": { "Authorization": "Bearer sta_YOUR_KEY" }
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"stable-baseline": {
"serverUrl": "https://api.stablebaseline.io/functions/v1/cloud-serve/mcp",
"headers": { "Authorization": "Bearer sta_YOUR_KEY" }
}
}
}VS Code (Copilot Chat)
.vscode/mcp.json (workspace) or user settings:
{
"servers": {
"stable-baseline": {
"type": "http",
"url": "https://api.stablebaseline.io/functions/v1/cloud-serve/mcp",
"headers": { "Authorization": "Bearer ${input:sta_key}" }
}
}
}Other clients
Recipes for Warp, OpenCode, Antigravity, OpenAI Codex, ChatGPT Developer Mode, Gemini CLI/Extensions, and a generic recipe are at stablebaseline.io/docs/mcp/setup.
What you get
Category | Sample tools | Docs |
navigation |
| |
folders |
| |
documents |
| |
diagrams |
| |
whiteboards |
| |
images |
| |
data |
| |
improvements |
| |
plans |
| |
knowledge_graph |
| |
organization |
| |
members |
| |
teams |
| |
permissions |
| |
billing |
| |
kg_admin |
| |
settings |
| |
signup |
|
Full live catalogue: stablebaseline.io/docs/mcp/tools
Highlights
End-to-end agent-managed: agents drive sign-up → billing → org/workspace/project lifecycle → members → teams → permissions → Knowledge Graph scope. No human touching the UI.
Living documents: AI-native rich-text editor (CDMD = Markdown + inline diagrams, data tables, media, version history, real-time multi-author edits).
Visual diagram creation & editing: 40+ types — AI-generated, diagram-as-code, or freehand.
Plans, timelines, tasks, improvements & bugs: Day/Week/Month/Quarter/Year zoom Gantt, drag-to-reschedule, dependency cascades.
Self-learning Knowledge Graph (Enterprise): auto-built from every doc/plan/improvement; read by every connected agent. Stops hallucinations around gaps. Run one brain workspace-wide, one per department, or one per project — RBAC end-to-end.
Compliance Readiness (Enterprise): scans against OWASP ASVS, NIST SSDF, CIS Controls, ISO 27001, SOC 2, TISAX. Readiness only — not legal advice, not an attestation.
Bring-your-own-agent — no lock-in: any MCP-compatible client.
Credit-cost preview ritual for every spending operation:
previewX→ confirm token →applyX.
Auth
Method | When to use |
OAuth 2.1 + Dynamic Client Registration | Default for desktop apps and IDE extensions. Smithery handles it automatically. |
Bearer API key ( | CI/CD, headless agents, server-to-server. Mint at app.stablebaseline.io/settings/mcp-setup. Project-scoped or global. |
OAuth endpoints:
authorize:https://api.stablebaseline.io/functions/v1/cloud-serve/oauth/authorizetoken:https://api.stablebaseline.io/functions/v1/cloud-serve/oauth/tokenregister(DCR):https://api.stablebaseline.io/functions/v1/cloud-serve/oauth/registerScopes:
openid,profile,email,phone. These identify the signed-in user and do NOT decide what an agent may do: authorisation comes from the read/write/delete permissions per content type and the organisation capability toggles chosen on the consent screen.Authoritative metadata (always prefer this over the list above):
https://api.stablebaseline.io/functions/v1/cloud-serve/.well-known/oauth-authorization-server
Discovery
Surface | URL |
| |
Official MCP Registry | https://registry.modelcontextprotocol.io/v0/servers?search=io.stablebaseline |
Smithery | |
| |
| |
| |
|
Pricing
Free: 100 one-off credits, no credit card.
Pro: A$79 / user / month, 500 credits / user / month.
Enterprise: custom — Knowledge Graph, Compliance Readiness, audit logs, SSO. Contact.
Status
🟢 MCP Registry:
io.stablebaseline/sb—active,isLatest. Listed.🟢 Smithery: published with
configSchema(Quick Setup). 196 tools / 11 prompts / 8 resources discovered.🟢
.well-known/mcp.json: live, schema 2024-11-05.🟢 Endpoint:
api.stablebaseline.io/functions/v1/cloud-serve/mcp— accepts POST withmcp-protocol-version: 2025-06-18.
Issues & support
Bug or feature request: open an issue here.
Security report: see
.well-known/security.txt— RFC 9116 contact.General support: https://stablebaseline.io/contact
License
This repository (README, llms-install.md, brand assets, and any documentation) is licensed under the MIT License — see LICENSE. You can copy, fork, and adapt these docs freely.
The Stable Baseline product itself — the SaaS application, the MCP server implementation, and the company brain Knowledge Graph — is proprietary, closed-source, and provided as a service at https://stablebaseline.io under the Stable Baseline Terms of Service.
Built by Orixian Solutions Pty Ltd, Sydney, Australia.
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.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAI-native productivity backend that gives your AI assistant persistent memory, pattern awareness, and computed intelligence about your work. 14 MCP tools for task management, daily planning, weekly review, and personal context.MIT
- AlicenseAqualityCmaintenanceSelf-hosted memory and governance layer for AI coding agents. 28 MCP tools with hybrid search, structured knowledge capture, behavioral nudges, and git-native storage. Zero cloud dependencies.304Business Source 1.1
- AlicenseBqualityCmaintenanceShared workspace your AI agents write to. CMMN case management with 184+ MCP tools: cases, tasks, event-driven CMMN workflows with sentries, persistent memory with semantic search, billing and invoicing. OAuth or token auth; cloud-hosted remote MCP endpoint.10036MIT

Beever Atlasofficial
AlicenseAqualityAmaintenanceTurns team chat (Slack, Discord, MS Teams, Mattermost) into a living knowledge base - a typed knowledge graph plus auto-generated wiki - exposed to AI agents through a 28-tool MCP server with semantic search, expert finding, and decision tracing.28439Apache 2.0
Related MCP Connectors
Your company's brain for AI agents. Cited, permission-aware knowledge across every system.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Shared, permission-aware company context for AI agents, with provenance, approvals and audit.
Appeared in Searches
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/stablebaseline/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server