Skip to main content
Glama

Convolut MCP Server

by expdal3

Convolut MCP Server

Official Model Context Protocol (MCP) server for Convolut Context Bank, enabling seamless integration with Claude Desktop and other MCP clients.

Features

🚀 11 Powerful Tools for context management and AI-powered operations:

Context Management

  • list_contexts - Search and filter contexts with advanced options
  • get_context - Retrieve specific context by ID
  • create_context - Create new context with content and metadata
  • update_context - Update existing contexts
  • delete_context - Delete contexts by ID

AI-Powered Operations

  • search_contexts - Semantic search across your contexts
  • consolidate_contexts - AI-powered context consolidation and summarization
  • plan_from_contexts - Generate actionable plans from multiple contexts

Export & Integration

  • export_contexts - Export to JSON, XML, TXT, or Markdown formats
  • get_raw_url - Generate temporary shareable URLs
  • get_context_stats - Statistical analysis of your contexts

Quick Start

Installation

npm install -g @convolut/convolut-mcp

Claude Desktop Setup

  1. Get your Convolut API key from https://convolut.app
  2. Add to your Claude Desktop configuration file:

Windows: %APPDATA%\\Claude\\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{ "mcpServers": { "convolut": { "command": "npx", "args": ["@convolut/convolut-mcp"], "env": { "CONVOLUT_API_KEY": "your_api_key_here" } } } }
  1. Restart Claude Desktop
  2. Start using Convolut tools in your conversations! 🎉

Usage Examples

Search Your Contexts

"Search for contexts about machine learning"

Claude will use the search_contexts tool to find relevant contexts in your Convolut library.

Create New Context

"Save this conversation as a new context titled 'API Integration Discussion'"

Claude will use create_context to save the conversation to your Convolut account.

Generate Plans

"Analyze these project contexts and create an actionable plan"

Claude will use consolidate_contexts and plan_from_contexts to analyze multiple contexts and generate structured plans.

Manual Installation

If you prefer to install locally:

# Clone or download the package git clone https://github.com/expdal3/convolut-mcp.git cd convolut-mcp # Install dependencies (none required - pure Node.js!) npm install # Test the installation CONVOLUT_API_KEY=your_key_here node stdio-client.cjs

Then use the full path in your Claude Desktop config:

{ "mcpServers": { "convolut": { "command": "node", "args": ["/full/path/to/convolut-mcp/stdio-client.cjs"], "env": { "CONVOLUT_API_KEY": "your_api_key_here" } } } }

API Key Setup

Get Your API Key

  1. Sign up at https://convolut.app
  2. Navigate to Settings → API Keys
  3. Generate a new API key
  4. Copy the key (format: convolut_sk_...)

Environment Variables

You can also set the API key as an environment variable:

# Windows set CONVOLUT_API_KEY=your_api_key_here # macOS/Linux export CONVOLUT_API_KEY=your_api_key_here

Architecture

Claude Desktop (or other MCP Client) → stdio → convolut-mcp (MCP Server) → HTTPS → api.convolut.app

This MCP server provides a direct, efficient bridge between Claude Desktop and the Convolut API, with no intermediate servers required.

Requirements

  • Node.js 18.0.0 or higher
  • Convolut API key
  • Claude Desktop (or any MCP-compatible client)

Supported Platforms

  • ✅ Windows 10/11
  • ✅ macOS 12+
  • ✅ Linux (Ubuntu 20.04+)

Troubleshooting

Claude Desktop Not Seeing Tools

  1. Verify your claude_desktop_config.json syntax is correct
  2. Check that your API key is valid
  3. Restart Claude Desktop completely
  4. Check Claude Desktop logs for errors

API Key Issues

Error: CONVOLUT_API_KEY environment variable is required
  • Ensure your API key is set in the Claude Desktop config
  • Verify the API key format starts with conair_sk_
  • Check for typos in the configuration file

Connection Issues

  • Verify internet connectivity
  • Check if your firewall blocks HTTPS requests
  • Ensure Node.js version is 18.0.0 or higher

Development

Project Structure

convolut-mcp/ ├── stdio-client.cjs # Main MCP server entry point ├── utils/ │ └── api-client.cjs # Convolut API client ├── tools/ │ ├── contexts.cjs # Context management tools │ ├── ai-tools.cjs # AI-powered operations │ └── export.cjs # Export and statistics ├── types/ │ └── convolut.cjs # Type definitions └── README.md

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test thoroughly
  5. Submit a pull request

License

MIT License - see LICENSE file for details.

Support


Made with ❤️ by the Convolut team

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Enables 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.

  1. Features
    1. Context Management
    2. AI-Powered Operations
    3. Export & Integration
  2. Quick Start
    1. Installation
    2. Claude Desktop Setup
  3. Usage Examples
    1. Search Your Contexts
    2. Create New Context
    3. Generate Plans
  4. Manual Installation
    1. API Key Setup
      1. Get Your API Key
      2. Environment Variables
    2. Architecture
      1. Requirements
        1. Supported Platforms
          1. Troubleshooting
            1. Claude Desktop Not Seeing Tools
            2. API Key Issues
            3. Connection Issues
          2. Development
            1. Project Structure
            2. Contributing
          3. License
            1. Support
              1. Related Projects

                Related MCP Servers

                • -
                  security
                  F
                  license
                  -
                  quality
                  Facilitates enhanced interaction with large language models (LLMs) by providing intelligent context management, tool integration, and multi-provider AI model coordination for efficient AI-driven workflows.
                  Last updated -
                • -
                  security
                  A
                  license
                  -
                  quality
                  A server for managing project documentation and context across Claude AI sessions through global and branch-specific memory banks, enabling consistent knowledge management with structured JSON document storage.
                  Last updated -
                  4
                  11
                  MIT License
                • A
                  security
                  A
                  license
                  A
                  quality
                  Provides a structured documentation system for context preservation in AI assistant environments, helping users create and manage memory banks for their projects.
                  Last updated -
                  3
                  69
                  MIT License
                  • Linux
                  • Apple
                • A
                  security
                  A
                  license
                  A
                  quality
                  Provides intelligent context management for AI development sessions, allowing users to track token usage, manage conversation context, and seamlessly restore context when reaching token limits.
                  Last updated -
                  8
                  3
                  2
                  Apache 2.0
                  • Linux
                  • Apple

                View all related MCP servers

                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/expdal3/convolut-mcp'

                If you have feedback or need assistance with the MCP directory API, please join our Discord server