Capacities 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., "@Capacities MCP Serversearch my notes for AI trends"
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.
Capacities MCP Server
An MCP server for Capacities: search, property-based object lookup, object CRUD, save weblinks, and daily notes from any MCP-compatible client.
⚠️ Upgrade to 2.x. Version 2.x runs on the Capacities v2 REST API. Version 1.x used the Capacities Beta API, which Capacities discontinues on September 1, 2026. On that date, 1.x builds (and any
.dxtpackaged before v2.0.0) stop working. Reinstall the currentcapacities-desktop-extension.dxt(v2.x) to keep the integration working. See the Capacities API notice.
Prerequisites
A Capacities account with API access
An API token (Capacities Desktop App → Settings → API → Generate token)
Related MCP server: Capacities-MCP-Plus
Installation
Choose the option that fits your setup:
Option 1: Claude Desktop Extension (Easiest)
Download
capacities-desktop-extension.dxtIn Claude Desktop: Settings → Extensions → Import Extension
Select the
.dxtfile and enter your API token when prompted
All dependencies are bundled; no additional setup needed.
Option 2: Run from Source
git clone https://github.com/inconceivablelabs/capacitiesMCP.git
cd capacitiesMCP
npm install
npm run buildThen add to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"capacities": {
"command": "node",
"args": ["/path/to/capacitiesMCP/server/dist/index.js"],
"env": {
"CAPACITIES_API_TOKEN": "your_token_here"
}
}
}
}Option 3: Docker Container
For running as a persistent service (e.g. behind an MCP gateway):
# Build from the repo root: the Dockerfile copies from both src/ and server/.
docker build -f server/Dockerfile -t capacities-mcp .
docker run -d \
-e CAPACITIES_API_TOKEN=your_token_here \
capacities-mcpThe Docker image uses server/, which contains only the runtime package and compiled output, with no source or dev dependencies.
Available tools
Tool | Description |
| Search objects by title (optionally scoped by |
| Locate objects by a property the API can't search on — date, label/status, tag/relation, or scalar. Seeds a title search, then filters and sorts client-side over typed property values; returns ids + titles + the matched values (no bodies — compose with |
| Show the space your API token is scoped to |
| List the space's structures: their properties, label options, and relation targets |
| Create an object of any structure with typed properties, labels, and relations (set by name, resolved strictly), plus a markdown body |
| Update an existing object's properties/relations (replaces each named property's value) and append a body |
| Read an object as Markdown (frontmatter + body) |
| Append markdown content to an object's body without touching its properties |
| Delete an object (moves to trash by default; |
| Save a URL as a Weblink, auto-fetching page metadata (override |
| Append content to today's daily note |
Single-space per token. A v2 API token is scoped to exactly one space;
list_spacesreturns that one space. To work with multiple spaces, use multiple tokens.
The object model: properties vs. body
Objects in Capacities hold two kinds of content, and the tools treat them differently:
Properties — the object's typed fields: title, text, dates, numbers, labels (e.g. a task's Status, a weblink's Category), and entity relations (tags, a meeting's attendees). Set these with the
properties/labels/relationsinputs oncreate_object/update_object, keyed by property name or id (get them, plus label options and relation targets, fromget_space_info). Relations and labels are set by name and resolved strictly: an unknown name is an error, never a guess; passcreate_missing_relations: trueto auto-create unmatched relation targets.Body — freeform Markdown, set via the
body/notes/content/markdownparameter.
Rule of thumb: set structured things as properties, prose as body. A tag is a property
(a relations entry), not a [[link]] typed into the text. One tool call completes one
object (all its properties and its body); several distinct, standalone objects take
several calls.
Markdown conventions (body)
Any body/notes field supports Capacities' inline conventions:
Syntax | Effect | Creates an object? |
| Creates a Task and links it into the body | Yes, a Task |
| Creates or links a Tag | Yes, a Tag if new |
| Links an existing object by title | No; plain text if no such object exists |
Use [[Name]] to reference something that already exists; use () / # when you intend
to create the task/tag.
Weblinks & media objects (current API limitation)
save_weblink creates a Weblink from a URL and auto-fetches the page's title and description;
you can override title and description at save time. Those are the only properties
settable on a weblink. The Capacities API currently treats media objects (weblinks, PDFs,
images, audio, files) as create-only: they cannot be updated after creation, so tags,
Category, and Topic cannot be set on a weblink through the API. To tag a weblink today, put a
#tag in its notes (this associates a Tag via the body).
This is an upstream Capacities API limitation, not a limitation of this server. As soon as the Capacities API allows updating media objects, this server will add full weblink property support (tags / Category / Topic via
save_weblink). Until then,#tag-in-notes is the available path.
Configuration
Environment Variable | Required | Default |
| Yes | — |
| No |
|
| No |
|
Project structure
capacitiesMCP/
├── src/ # TypeScript source (single source of truth)
├── server/ # Runtime packaging
│ ├── Dockerfile # Container build
│ ├── package.json # Runtime dependencies only
│ └── dist/ # Compiled output (built from root src/)
├── tsconfig.json # Builds src/ → server/dist/
├── manifest.json # DXT extension manifest
└── *.dxt # Pre-built extension packagesnpm run build compiles src/ directly into server/dist/. There is one source, one build step, and one output location used by all three installation methods.
Development
npm install
npm run build # Compile TypeScript
npm run dev # Watch mode
npm run inspector # MCP Inspector for debugging
npm test # Run testsSee CLAUDE.md for architecture details.
License
MIT. See LICENSE.
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/inconceivablelabs/capacitiesMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server