Capacities MCP Server
Enables search, content creation, weblink saving, and knowledge base analysis with Capacities through any MCP-compatible client.
README
Capacities MCP Server
An MCP server for Capacities — search, create content, save weblinks, and analyze your knowledge base from any MCP-compatible client.
Prerequisites
- A Capacities account with API access
- An API token (Capacities Desktop App → Settings → API → Generate token)
Installation
Choose the option that fits your setup:
Option 1: Claude Desktop Extension (Easiest)
- Download
capacities-desktop-extension.dxt - In 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 build
Then 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):
cd server
docker build -t capacities-mcp .
docker run -d \
-e CAPACITIES_API_TOKEN=your_token_here \
capacities-mcp
The Docker image uses server/ which contains only the runtime package and compiled output — no source or dev dependencies.
Available Tools
| Tool | Description |
|---|---|
search_content |
Search across Capacities spaces using keywords |
list_spaces |
List all your Capacities spaces |
get_space_info |
Detailed info about a specific space |
smart_search |
Context-aware search with related content |
advanced_search |
Search with date ranges, object types, and filters |
create_structured_note |
Create structured templates (meeting, daily-reflection, task-list, research) |
save_weblink |
Save a URL as a weblink with metadata and tags |
add_to_daily_note |
Add content to today's daily note |
analyze_content_patterns |
Analyze patterns in your content |
identify_knowledge_gaps |
Find underdeveloped topics |
Configuration
| Environment Variable | Required | Default |
|---|---|---|
CAPACITIES_API_TOKEN |
Yes | — |
CAPACITIES_API_BASE_URL |
No | https://api.capacities.io |
LOG_LEVEL |
No | info |
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 packages
npm 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 tests
See CLAUDE.md for architecture details.
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.