Capacities MCP Bridge (Unofficial)
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., "@Capacities MCP Bridge (Unofficial)save this link to my daily notes: https://example.com"
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.

Unofficial Capacities.io MCP Tools
Disclaimer
This project provides several methods for connecting to the Capacities note taking app API using the Model Context Protocol (MCP). It was 100% vibe-coded with the help of Gemini 2.5 Pro. While it works, it relies on third-party adapter services and, in some cases, your own hosting. Use at your own risk.
For everyone looking for a native Bun implementation, there exists another project https://github.com/jem-computer/capacities-mcp
Table of Contents
Setup for Claude Desktop (with Node.js Bridge)
Use this if you need to connect Claude Desktop and it requires simple tool names.
Setup for Simple SSE Clients (CLion, VS Code)
Use this for a direct connection from a compatible IDE plugin.
Advanced Setup for Genspark (Self-Hosted Server)
The most reliable and robust method. Use this for Genspark or any other client if you have your own server/VPS.
General Prerequisites
A Capacities API Token. You can generate this from your Capacities account settings if you have a paid account.
The MCP Link Generator tool: https://mcp-link.vercel.app/
Setup 1: Claude Desktop (with Node.js Bridge)
This method uses the included capacities-claude-bridge.js script to act as a translator between Claude Desktop (which needs simple tool names) and the MCP adapter (which creates complex names).
Step 1.1: Install Node.js and Download Files
Install Node.js: Go to the official Node.js website and download and install the LTS version for your operating system.
Download the Bridge Code: Open a terminal (like Git Bash, Command Prompt, or PowerShell) and run the following commands:
# Clone the repository to a permanent location git clone https://github.com/natkitten/capacities-mcp-bridge-unofficial.git # Navigate into the project folder cd capacities-mcp-bridge-unofficialInstall Dependencies: While inside the
capacities-mcp-bridge-unofficialfolder, run:npm install
Step 1.2: Generate the Server URL for the Bridge
Go to mcp-link.vercel.app.
Fill in the form:
OpenAPI Specification URL: Use this specific URL for the Claude bridge setup. It uses snake_case
operationIds.https://gist.githubusercontent.com/natkitten/e6ce1335c2cdad87a9237156c5cda315/raw/capacities_openapi_2.jsonAPI Base URL:
https://api.capacities.ioHTTP Headers: Enter your Authorization header:
Authorization: Bearer YOUR_CAPACITIES_API_TOKENPath Filters: Leave this field completely empty.
Encoding Options: Select "Base64 (JSON Encoded)".
Click "Generate MCP Link" and copy the resulting URL.
Step 1.3: Configure the Bridge Script
Open the
capacities-claude-bridge.jsfile (located in the folder you just downloaded) in a text editor.Paste the URL you just copied, replacing the placeholder text for the
SSE_URLconstant.const SSE_URL = 'https://mcp-openapi-to-mcp-adapter.onrender.com/sse?code=...'; // YOUR URL HERESave the file.
Step 1.4: Configure Claude Desktop (Windows)
Open File Explorer and navigate to your Claude Desktop config file by pasting this path into the address bar:
%APPDATA%\Claude Desktop\claude_desktop_config.jsonOpen the file and add the
mcp_bridgessection as shown below.{ "mcpServers": { "capacities": { "command": "node", "args": ["C:\\path\\to\\your\\capacities-mcp-bridge-unofficial\\capacities-claude-bridge.js"] } } }CRUCIAL: Replace
C:\\path\\to\\your\\capacities-mcp-bridge-unofficialwith the actual, absolute path to the folder where you cloned the repository. Remember to use double backslashes\\.Save the
claude_desktop_config.jsonfile and restart Claude Desktop.
Capacities API at a glance
Endpoint | What it does | Typical use-case |
| Lists all Capacities spaces the token can access | Show a picker or verify the token |
| Returns structures, collections & property definitions of a space | Needed once at startup to map IDs to human labels |
| Full-text or title search across one or many spaces | Let the LLM find existing notes before it creates new ones |
| Saves an external URL (and optional tags/markdown) into a space | Quick bookmarking from chat |
| Appends Markdown to today’s daily note in a space | Fast journaling / meeting-note dump |
Current rate-limits (per user / 60 s window):
/spaces&/space-info: 5 requests/search: 120 requests/save-weblink: 10 requests/save-to-daily-note: 5 requests
For everything else (errors, structures, OpenAPI spec), see the official docs ➜ https://api.capacities.io/docs/.
https://github.com/user-attachments/assets/257aada5-5f65-4aec-b7da-4766452e3cb5
Setup 2: Simple SSE for IDEs (Cline/RooCode in VS Code)
This method is for MCP plugins that can handle the mcplink_... tool names directly. No bridge script is needed.
Follow Step 1.2 above to generate your unique Server URL from
mcp-link.vercel.app, using thecapacities_openapi_2.jsonand leaving "Path Filters" empty.Find the MCP configuration file for your IDE. It's often located at
YOUR_HOME_DIRECTORY/.mcp/servers.json.Add the following entry, replacing the placeholder with your generated URL:
{ "servers": { "capacities": { "url": "PASTE_YOUR_GENERATED_URL_HERE" } } }Restart your IDE. The tools should appear with their full
mcplink_...names.
Setup 3: Advanced Self-Hosted Server for Genspark
This is the most reliable method. It runs the MCP server on your own VPS. This setup requires a slightly different OpenAPI spec to work around a parser bug in the self-hosted server package.
Step 3.1: VPS and Node.js Setup
Connect to your VPS via SSH (
ssh root@YOUR_VPS_IP).Install
nvm(Node Version Manager):curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bashActivate
nvm:export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"Add
nvmto your shell profile so it loads automatically on every login:echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.bashrc echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> ~/.bashrcInstall Node.js (LTS version):
nvm install --lts
Step 3.2: Create and Configure the Server
Create a project directory on your VPS and navigate into it:
mkdir capacities-mcp-server cd capacities-mcp-serverInitialize a Node.js project: This creates the
package.jsonfile.npm init -ySet the project type to "module": Open the
package.jsonwithnano package.jsonand add"type": "module",after the"main": "index.js",line.Install
pm2and the server package locally: We install them here to keep the project self-contained.npm install pm2 @ivotoby/openapi-mcp-server
Step 3.3: Create the Server Configuration
Create an
ecosystem.config.cjsfile forpm2. The.cjsextension is important.nano ecosystem.config.cjsPaste the following configuration into the file. This uses the locally installed
pm2and server script.module.exports = { apps : [{ name : 'capacities-mcp', script : './node_modules/@ivotoby/openapi-mcp-server/dist/cli.js', args : [ '--openapi-spec', 'https://gist.githubusercontent.com/natkitten/37e88b5dab4195b0f4d650f31f5505bf/raw/capacities_openapi_3.json', '--api-base-url', 'https://api.capacities.io', '--headers', 'Authorization:Bearer YOUR_CAPACITIES_API_TOKEN', '--toolNameFormat', '**', '--transport', 'http', '--host', '0.0.0.0', '--port', '8448' // Or your preferred port ] }] }Replace
YOUR_CAPACITIES_API_TOKENwith your actual token.Save and exit (
CTRL + X,Y,Enter).
Step 3.4: Run the Server
Start the server using the local
pm2:./node_modules/pm2/bin/pm2 start ecosystem.config.cjsCheck logs to confirm it's listening on your port:
pm2 logs capacities-mcpSave the configuration for reboots:
pm2 saveEnable
pm2on startup: Runpm2 startupand follow the on-screen instructions.
Step 3.5: Configure Firewall, Caddy, and Genspark
Firewall: Open your chosen port (
8448in this example) on both your VPS firewall (sudo ufw allow 8448) and your cloud provider's firewall (in the Hostinger dashboard).Caddy: For a secure HTTPS URL, set up a reverse proxy in your
Caddyfile.mcp.yourdomain.com { reverse_proxy localhost:8448 }Reload Caddy to apply the changes (
sudo systemctl reload caddy).Genspark:
Server Type:
StreamableHttpServer URL:
https://mcp.yourdomain.com/mcp(using the/mcppath).Request Header:
{"Content-Type": "application/json"}
Add the server and test it.
Licensed under the MIT License — see LICENSE for details
This server cannot be installed
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
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/natkitten/capacities-mcp-bridge-unofficial'
If you have feedback or need assistance with the MCP directory API, please join our Discord server