Context11 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., "@Context11 MCP Serversearch for project requirements"
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.
Context11 MCP Server
An MCP (Model Context Protocol) server that provides access to your Context11 knowledge base for AI assistants.
Installation
npm install context11-mcpRelated MCP server: RAG Documentation MCP Server
Configuration
Environment Variables
Variable | Description | Required |
| Your Context11 API key (starts with | Yes |
| API base URL (default: | No |
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"context11": {
"command": "npx",
"args": ["-y", "context11-mcp"],
"env": {
"CONTEXT11_API_KEY": "ctx11_your_api_key_here"
}
}
}
}Local Development
For local testing against a development server:
{
"mcpServers": {
"context11": {
"command": "npx",
"args": ["-y", "context11-mcp"],
"env": {
"CONTEXT11_API_KEY": "ctx11_your_api_key_here",
"CONTEXT11_URL": "http://localhost:3000"
}
}
}
}From Source
{
"mcpServers": {
"context11": {
"command": "node",
"args": ["/path/to/context11-mcp/dist/index.js"],
"env": {
"CONTEXT11_API_KEY": "ctx11_your_api_key_here"
}
}
}
}Tools
search_context
Search the company knowledge base for relevant context, guidelines, and rules.
Parameters:
Name | Type | Description |
| string | What to search for in the knowledge base |
| number | Maximum number of results (default: 10) |
Example:
{
"query": "brand guidelines",
"limit": 5
}get_document
Get the full content of a specific document by ID.
Parameters:
Name | Type | Description |
| string | Document ID from search results |
Example:
{
"id": "abc123"
}list_folders
List all folders in the workspace.
Parameters: None
Example Response:
Found 2 folder(s):
- **Engineering** (ID: abc123)
Documents: 5, Subfolders: 2
- **Marketing** (ID: def456)
Documents: 3, Subfolders: 0list_documents
List all documents in a specific folder.
Parameters:
Name | Type | Description |
| string | The folder ID to list documents from |
Example:
{
"folderId": "abc123"
}read_document
Read a document's full content by ID.
Parameters:
Name | Type | Description |
| string | The document ID to read |
Example:
{
"documentId": "abc123"
}update_document
Update a document's title and/or content. Content must be in Tiptap JSON format.
Parameters:
Name | Type | Description |
| string | The document ID to update |
| string | (Optional) New title for the document |
| string | (Optional) New content in Tiptap JSON format |
Example:
{
"documentId": "abc123",
"title": "Updated Title",
"content": "{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"type\":\"text\",\"text\":\"Hello world\"}]}]}"
}Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run devLicense
MIT
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
- AlicenseBqualityDmaintenanceAllows AI models to interact with SourceSync.ai's knowledge management platform to organize, ingest, retrieve, and search content in knowledge bases.Last updated25393MIT
- AlicenseAqualityDmaintenanceProvides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.Last updated7211MIT
- AlicenseAqualityDmaintenanceEnables seamless integration with Convolut Context Bank for AI-powered context management, search, consolidation, and export operations. Provides 11 powerful tools for creating, managing, and analyzing contexts with semantic search and automated planning capabilities.Last updated1117MIT
- Alicense-qualityCmaintenanceEnables to search and retrieve chunks from a fictional library's documentation through three tools (kb_search, kb_fetch, kb_sources), allowing LLMs to perform RAG queries via the Model Context Protocol.Last updatedMIT
Related MCP Connectors
Securely search and manage workspace context files for AI agents and teams.
Shared, permission-aware company context for AI agents, with provenance, approvals and audit.
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
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/vedadsose/mcp-server-context11'
If you have feedback or need assistance with the MCP directory API, please join our Discord server