🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@contextium/mcp-server

Package Overview
Dependencies
Maintainers
2
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contextium/mcp-server

MCP server for Contextium — pipe team SOPs, coding standards, and AI context directly into Claude, Cursor, and other AI coding assistants

latest
Source
npmnpm
Version
1.10.10
Version published
Maintainers
2
Created
Source

Contextium MCP Server

npm version License: MIT

Give your AI assistant persistent, searchable access to your team's docs, SOPs, coding standards, and agent configs — no copy-pasting.

Contextium is a central knowledge store that AI assistants can read directly via MCP. Connect Claude, Cursor, Windsurf, or any MCP-compatible client and your AI will automatically follow your team's guidelines, load the right context for each task, and stay consistent across every session.

Contextium MCP — loading a workflow in Claude

Why Contextium?

Without a shared knowledge store, every AI session starts from scratch. You paste in the same coding standards, re-explain the same architecture, and hope the AI stays consistent. Contextium solves this at the source.

  • Context libraries — store SOPs, coding standards, architecture docs, and API references
  • Agents — pre-configured AI personas with skills and constraints baked in
  • Skills — reusable knowledge modules the AI can load on demand
  • Workflows — named context sets that load everything needed for a task in one command
  • Marketplace — install community-built agents and skills instantly

Once connected, Claude pulls in your team's knowledge automatically. You stop repeating yourself.

No installation required. Add the hosted Contextium MCP server to your AI client and authenticate once.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "contextium": {
      "type": "sse",
      "url": "https://mcp.contextium.io/sse"
    }
  }
}

Restart Claude Desktop. A browser window will open on first use to authenticate your Contextium account.

Claude Code (CLI)

claude mcp add contextium --transport sse https://mcp.contextium.io/sse

Cursor

{
  "mcpServers": {
    "contextium": {
      "url": "https://mcp.contextium.io/sse"
    }
  }
}

VS Code (Copilot)

{
  "mcp": {
    "servers": {
      "contextium": {
        "type": "sse",
        "url": "https://mcp.contextium.io/sse"
      }
    }
  }
}

Option 2: Local MCP (Self-hosted)

Run the MCP server locally via npm for offline access or self-hosting.

# Authenticate and configure
npx @contextium/mcp-server@latest setup

Then add to your Claude Desktop config:

{
  "mcpServers": {
    "contextium": {
      "command": "npx",
      "args": ["-y", "@contextium/mcp-server@latest"]
    }
  }
}

Auth commands

npx @contextium/mcp-server setup      # Initial setup — opens browser to authorize
npx @contextium/mcp-server status     # Check connection and active workspace
npx @contextium/mcp-server profiles   # Manage multiple accounts
npx @contextium/mcp-server logout     # Sign out

What Claude Can Do

Once connected, you interact naturally — Contextium handles the context loading:

"Load our React coding standards and review this component for compliance"

"What are our team's rules for writing API endpoints?"

"Load the Backend workflow and help me scaffold a new service"

"Find all documentation related to our authentication flow"

"Install the code-reviewer agent from the marketplace"

"Notify the team about this new spec I just created"

"Notify Sarah about this workflow — just her, not everyone"

Contextium MCP — searching documentation in Claude

MCP Tools

Tags in Contextium are flat and untyped — a tag is just a #value, with no categories or type:value format. A tag is created by adding a #value token to a file's content — either edit the file directly, or use manage_relationship (type=tag, action=add|remove), which tags a file by editing its content and auto-creates the tag on save. list_tags lists workspace tags. There is no separate create-a-tag tool.

Read

ToolDescription
list_context_librariesList documentation projects
list_agentsList AI agent configurations
list_skillsList skills library
list_filesList files in a library, agent, or skill
get_fileGet file content and metadata
get_file_versionsView version history
get_context_library_structureGet full folder structure
search_documentationFull-text search across all docs
search_by_tagsFind files matching tags
list_workflowsList available workflows
load_workflowLoad all files tagged in a workflow
list_tagsList all flat workspace tags
list_workspacesList accessible workspaces
get_agentGet agent configuration
get_skillGet skill content
get_workflowGet workflow details
get_context_libraryGet library details

Write

ToolDescription
create_fileCreate a new file
update_fileUpdate an existing file
delete_fileDelete a file
create_context_libraryCreate a new library
create_agentCreate an agent configuration
create_skillCreate a new skill
create_workflowCreate a workflow
update_workflowUpdate a workflow
update_agentUpdate an agent
manage_relationshipAdd or remove a tag on a file by editing the file content (inline #value) — auto-creates the tag on save
add_skill_to_agentAssociate a skill with an agent
remove_skill_from_agentRemove a skill from an agent

Marketplace

ToolDescription
search_marketplaceSearch the Contextium Marketplace
get_marketplace_listingGet marketplace item details
install_marketplace_listingInstall a marketplace agent or skill

Team

ToolDescription
notify_team_membersNotify workspace team members about a file, workflow, agent, or library. Target everyone, or specific members by name, email, or ID. Respects each member's notification preferences and Do Not Disturb settings.

Troubleshooting

OAuth login not appearing (Remote MCP) Ensure your client supports remote MCP with OAuth: Claude Desktop 0.7+, Cursor 0.42+. Restart after updating config.

"Not authenticated" error (Local MCP)

npx @contextium/mcp-server status
npx @contextium/mcp-server setup

Claude Desktop not seeing tools

  • Check config file syntax (valid JSON, correct path)
  • Ensure npx is in your PATH
  • Restart Claude Desktop completely
  • Check logs: ~/Library/Logs/Claude/mcp*.log

API timeout Check https://status.contextium.io or verify your token with npx @contextium/mcp-server status.

License

MIT © Contextium

Built with Model Context Protocol by Anthropic

Keywords

contextium

FAQs

Package last updated on 29 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts