drio
Open app

Aindreyway MCP Codex Keeper

Source

An intelligent MCP server that serves as a guardian of development knowledge, providing Cline assistants with curated access to latest documentation and best practices across the software development landscape

Catalog onlyCatalog onlySTDIO

Overview

Aindreyway MCP Codex Keeper is an intelligent MCP server designed to serve as a guardian of development knowledge, providing Cline assistants with curated access to the latest documentation and best practices across the software development landscape.

To use the MCP Codex Keeper, ensure Node.js is installed (version 18 or higher), then configure it by adding specific settings to your Cline/Sonnet configuration and executing it using npx.

  • Automatically manages documentation from various sources - Intelligent search capabilities for documentation - Supports tagging and categorization of documentation - Updates documentation automatically to keep it current - Optimizes memory usage for better performance
  1. Retrieving the latest documentation for React.
  2. Finding best practices for TypeScript development.
  3. Searching for information about asynchronous programming techniques.

Add to your AI client

Use these steps to connect Aindreyway MCP Codex Keeper in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-codex-keeper-aindreyway": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

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

{
  "mcpServers": {
    "mcp-codex-keeper-aindreyway": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-codex-keeper-aindreyway": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-codex-keeper-aindreyway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-codex-keeper-aindreyway": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-codex-keeper-aindreyway": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-codex-keeper-aindreyway"
      ]
    }
  }
}
Aindreyway MCP Codex Keeper — MCP Registry