loading…
Search for a command to run...
loading…
Enables AI assistants to manage Fusebase workspaces by providing 46 tools for handling pages, tasks, folders, and organizational administration. It features a t
Enables AI assistants to manage Fusebase workspaces by providing 46 tools for handling pages, tasks, folders, and organizational administration. It features a two-tier tool system and secure session management using reverse-engineered internal endpoints.
An MCP server that lets AI assistants manage your Fusebase (formerly Nimbus Note) workspaces — pages, folders, tasks, tags, files, members, and more.
Note: Fusebase has no public REST API. This server uses reverse-engineered internal endpoints with cookie-based authentication.
Option A — Install from GitHub (recommended):
npm install -g github:ryan-haver/fusebase-mcp
This automatically installs dependencies, compiles TypeScript, and downloads Chromium for auth.
Option B — Clone and build manually:
git clone https://github.com/ryan-haver/fusebase-mcp.git
cd fusebase-mcp
npm install
npm installautomatically builds the project and installs Playwright's Chromium via theprepareandpostinstallscripts.
Copy .env.example to .env and set your Fusebase details:
cp .env.example .env
FUSEBASE_HOST=yourorg.nimbusweb.me # Your org's Fusebase hostname
FUSEBASE_ORG_ID=your_org_id # Found in Fusebase URL or API responses
Where to find these: Log into Fusebase → look at the URL bar. Your hostname is
<something>.nimbusweb.me. The org ID appears in API requests (open browser DevTools → Network tab → look for/v2/api/requests).
Run the auth script to capture your session cookies securely:
npx tsx scripts/auth.ts
This opens a browser window → log into Fusebase → cookies are automatically captured and saved encrypted to data/cookie.enc.
Headless mode: After the first login, you can re-authenticate without a browser window:
npx tsx scripts/auth.ts --headless
Add to your MCP client config. Examples:
mcp_config.json{
"fusebase": {
"command": "node",
"args": ["/path/to/fusebase-mcp/dist/index.js"],
"env": {
"FUSEBASE_HOST": "yourorg.nimbusweb.me",
"FUSEBASE_ORG_ID": "your_org_id"
}
}
}
claude_desktop_config.json{
"mcpServers": {
"fusebase": {
"command": "node",
"args": ["/path/to/fusebase-mcp/dist/index.js"],
"env": {
"FUSEBASE_HOST": "yourorg.nimbusweb.me",
"FUSEBASE_ORG_ID": "your_org_id"
}
}
}
}
settings.json{
"mcp": {
"servers": {
"fusebase": {
"command": "node",
"args": ["/path/to/fusebase-mcp/dist/index.js"],
"env": {
"FUSEBASE_HOST": "yourorg.nimbusweb.me",
"FUSEBASE_ORG_ID": "your_org_id"
}
}
}
}
}
Note: Replace
/path/to/fusebase-mcpwith the actual path where you cloned the repo. On Windows, use double backslashes:"C:\\path\\to\\fusebase-mcp\\dist\\index.js".
Ask your AI assistant:
"List my Fusebase workspaces"
If it works, you're all set! 🎉
The server uses a core/extended tier system to optimize agent context usage:
| Tier | Tools | Description |
|---|---|---|
| Core (default) | 21 | Day-to-day: pages, folders, tasks, tags, members, guides |
| Extended | +42 | Admin, analytics, content mutations, files, databases, portals |
Enable extended tools:
set_tool_tier with tier: "all"FUSEBASE_TOOLS=all to your .env| Category | Tool | Description |
|---|---|---|
| Meta | set_tool_tier |
Enable extended tools or check current tier |
| Meta | check_version |
Check for server updates from GitHub |
| Auth | refresh_auth |
Refresh session cookies via Playwright |
| Content | list_workspaces |
List all workspaces |
| Content | list_pages |
List pages (filter by folder, pagination) |
| Content | get_page |
Get page metadata |
| Content | get_page_content |
Get page content as HTML (Y.js decoded) |
| Content | get_recent_pages |
Recently accessed pages |
| Content | create_page |
Create a new blank page |
| Content | list_folders |
Folder tree for a workspace |
| Tags | get_tags |
Workspace or page tags |
| Tags | update_page_tags |
Set tags on a page |
| Members | get_members |
Workspace or org members |
| Tasks | search_tasks |
Search tasks (by workspace/page) |
| Tasks | list_task_lists |
Task boards and tasks |
| Tasks | create_task |
Create a task in a task list |
| Guides | search_guides |
Search 231 FuseBase guides by keyword |
| Guides | get_guide |
Get full guide content by section/slug |
| Guides | list_guide_sections |
Browse all 17 guide sections |
Enable with set_tool_tier(tier: "all"):
delete_page, update_page_contentget_page_attachments, list_files, get_file_count, upload_file, download_attachmentget_labels, get_note_tagsget_activity_stream, get_comment_threadsget_task_description, get_task_count, get_task_usageget_org_usage, get_org_limits, get_usage_summary, get_org_permissions, get_org_features, get_ai_usageget_workspace_detail, get_workspace_emails, get_workspace_infoget_navigation_menu, get_mention_entities, list_agents, get_recently_updated_notesget_database_data, list_databases, get_database_entity, create_database, add_database_row, list_all_databases, get_database_detail, update_database, delete_database, get_dashboard_detail, delete_dashboard, update_view, set_view_representationlist_portals, get_portal_pages.env is gitignored — credentials never enter version controlFUSEBASE_COOKIE in your MCP config for environments where the encrypted store isn't availablesrc/
index.ts → MCP server (63 tools, stdio transport, tier system)
client.ts → HTTP client (cookie auth, 401 auto-retry, logging)
crypto.ts → AES-256-GCM encryption for secrets at rest
types.ts → TypeScript interfaces for API responses
content-schema.ts → Content block IR (25+ block types)
markdown-parser.ts → Markdown → ContentBlock[] converter
token-builder.ts → ContentBlock → Y.js token builder
yjs-ws-writer.ts → Y.js WebSocket writer (write + read via WS sync)
yjs-html-decoder.ts → Y.js document → HTML decoder (20+ block types)
guide-loader.ts → Guide search index (231 guides, 17 sections)
scripts/
auth.ts → Capture session cookies via Playwright
scrape-guides.ts → Scrape FuseBase help guides into markdown + NLM sync
test-regression.ts → Comprehensive write→read regression test (20 checks)
test-guide-tools.ts → Guide loader integration test (13 checks)
discover.ts → Crawl Fusebase UI to discover API endpoints
docs/
guides/ → 231 FuseBase guides across 17 sections (auto-scraped)
data/ → (gitignored) Cookie store, API logs, workspace cache
See UNIMPLEMENTED_ENDPOINTS.md for 36 discovered but unimplemented API endpoints, prioritized by value:
npm run build to verify TypeScript compilesMIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"fusebase-mcp-server": {
"command": "npx",
"args": []
}
}
}Web content fetching and conversion for efficient LLM usage.
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also