MCP Catalogs
Home

nocodb-mcp-server vs memory

Side-by-side comparison to help you pick between these two MCP servers.

nocodb-mcp-server
by edwinbernadus
memory
by modelcontextprotocol
Stars★ 70★ 85,748
30d uses
Score4677
Official
Categories
DatabaseDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit2 mo agothis month

nocodb-mcp-server · Summary

NocoDB MCP Server enables CRUD operations on NocoDB databases through natural language commands.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

nocodb-mcp-server · Use cases

  • Manage NocoDB database content through natural language
  • Perform bulk operations on NocoDB tables
  • Upload JSON files to create new tables in NocoDB

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

nocodb-mcp-server · Install

Installation

  1. Install Node.js and TypeScript
  2. Clone the repository and install dependencies:
npm install
npm run build
  1. Set up environment variables in a .env file:
NOCODB_URL=https://your-nocodb-instance.com
NOCODB_API_TOKEN=your_api_token_here
NOCODB_BASE_ID=your_base_id_here
  1. Configure Claude Desktop by adding to claude_desktop_config.json:
{
  "mcpServers": {
    "nocodb": {
      "command": "node",
      "args": ["{working_folder}/dist/start.js"],
      "env": {
        "NOCODB_URL": "https://your-nocodb-instance.com",
        "NOCODB_BASE_ID": "your_base_id_here",
        "NOCODB_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Alternatively, use directly from CLI:

npx -y nocodb-mcp-server {NOCODB_URL} {NOCODB_BASE_ID} {NOCODB_API_TOKEN}

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.