nocodb-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
nocodb-mcp-server by edwinbernadus | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 70 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
nocodb-mcp-server · Summary
NocoDB MCP Server enables CRUD operations on NocoDB databases through natural language commands.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
nocodb-mcp-server · Install
Installation
- Install Node.js and TypeScript
- Clone the repository and install dependencies:
npm install
npm run build- Set up environment variables in a
.envfile:
NOCODB_URL=https://your-nocodb-instance.com
NOCODB_API_TOKEN=your_api_token_here
NOCODB_BASE_ID=your_base_id_here- 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}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}