npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@contextium/mcp-server

v1.2.32

Published

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

Readme

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.


Quick Start — Remote MCP (Recommended)

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 (35 total)

Read

| Tool | Description | |------|-------------| | list_context_libraries | List documentation projects | | list_agents | List AI agent configurations | | list_skills | List skills library | | list_files | List files in a library, agent, or skill | | get_file | Get file content and metadata | | get_file_versions | View version history | | get_context_library_structure | Get full folder structure | | search_documentation | Full-text search across all docs | | search_by_tags | Find files matching tags | | list_workflows | List available workflows | | load_workflow | Load all files tagged in a workflow | | list_tags | List all tags grouped by type | | list_tag_types | List tag types | | list_workspaces | List accessible workspaces | | get_agent | Get agent configuration | | get_skill | Get skill content | | get_workflow | Get workflow details | | get_context_library | Get library details |

Write

| Tool | Description | |------|-------------| | create_file | Create a new file | | update_file | Update an existing file | | delete_file | Delete a file | | create_context_library | Create a new library | | create_agent | Create an agent configuration | | create_skill | Create a new skill | | create_workflow | Create a workflow | | update_workflow | Update a workflow | | update_agent | Update an agent | | create_tag_type | Create a tag type | | create_tag | Create a tag | | apply_tag | Tag a file | | remove_tag | Remove a tag from a file | | add_skill_to_agent | Associate a skill with an agent | | remove_skill_from_agent | Remove a skill from an agent |

Marketplace

| Tool | Description | |------|-------------| | search_marketplace | Search the Contextium Marketplace | | get_marketplace_listing | Get marketplace item details | | install_marketplace_listing | Install a marketplace agent or skill |

Team

| Tool | Description | |------|-------------| | notify_team_members | Notify 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

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

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


Links

  • Website: https://contextium.io
  • Documentation: https://contextium.io/docs/mcp-integration
  • Remote MCP: https://mcp.contextium.io
  • GitHub: https://github.com/contextium-io/contextium
  • Support: [email protected]

License

MIT © Contextium


Built with Model Context Protocol by Anthropic