@

@contextable/mcp

A persistent AI memory server that enables storage and retrieval of context and project artifacts ac...

38 views
0 installs
Updated Feb 8, 2026
Not audited
Tools I Recommend
A persistent AI memory server that enables storage and retrieval of context and project artifacts across conversations. It features full-text search, version history, and automatic content chunking using local SQLite or hosted cloud storage.
  1. Click the "Install Now" button to open the FastMCP connection interface for adding environment variables.

  2. In the FastMCP interface locate the environment variables / ENV fields (often shown as key/value pairs). Add the following keys and values from the README:

    • Key: CONTEXTABLE_DATA_DIR
      Value: ~/.contextable
      • Windows example: C:\Users<YourUser>.contextable or %USERPROFILE%.contextable
      • Purpose: directory where Contextable stores data.
    • Key: CONTEXTABLE_DB_PATH
      Value: ~/.contextable/data.db
      • Windows example: C:\Users<YourUser>.contextable\data.db
      • If you want a custom DB location, provide an absolute path here (e.g., /mnt/data/contextable/data.db).
    • Key: CONTEXTABLE_LOG_LEVEL
      Value: info
      • Alternatives: debug, info, warn, error (use debug for more verbose logging).
  3. If you set a custom CONTEXTABLE_DB_PATH, ensure the directory exists and is writable by the MCP process:

    • macOS / Linux:
      • mkdir -p /path/to/dir
      • chmod 700 /path/to/dir
    • Windows (PowerShell):
      • New-Item -ItemType Directory -Path "C:\path\to\dir" -Force
  4. Save the ENV entries in the FastMCP interface and confirm/submit the installation. (Use the same Install Now dialog controls to finish the setup.)

  5. Restart the MCP / Claude Desktop client so the new environment values take effect:

    • For Claude Desktop: quit and re-open the app after installation.
    • If running as an HTTP MCP or standalone process, stop and restart the process.
  6. Verify the installation and ENV usage:

    • Confirm the DB file exists at the path you set (e.g., ls ~/.contextable/data.db or check Windows Explorer).
    • If you started the MCP in HTTP mode, call the health endpoint: curl http://localhost:3000/health (only applicable if you configured HTTP mode).
  7. Notes and troubleshooting:

    • No API keys are required—Contextable stores everything locally by default.
    • To increase logging for troubleshooting, set CONTEXTABLE_LOG_LEVEL=debug, save, and restart.
    • If you need the default config shown in the README instead of custom values, use the exact default paths above.

Quick Start

View on GitHub

More for Memory Management

View All →

More for Project Management

View All →

Similar MCP Servers

Report Issue

Thank you! Your issue report has been submitted successfully.