MCP Catalogs
Home

nocodb-mcp-server vs everything

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

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

nocodb-mcp-server · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

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

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.