dbt-mcp vs mongodb-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
dbt-mcp by dbt-labs | mongodb-mcp-server by mongodb-js | |
|---|---|---|
| Stars | ★ 562 | ★ 1,023 |
| 30d uses | — | — |
| Score | 53 | 55 |
| Official | — | — |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | DatabaseDeveloper ToolsCloud Storage |
| Language | Python | TypeScript |
| Last commit | this month | this month |
dbt-mcp · Summary
A comprehensive MCP server for dbt Core, Fusion, and Platform, providing SQL, semantic layer, and dbt CLI tools.
mongodb-mcp-server · Summary
MongoDB MCP Server connects to MongoDB databases and Atlas clusters, offering tools for database operations and Atlas management.
dbt-mcp · Use cases
- AI-powered data analysis and SQL generation in dbt projects
- Automating dbt project documentation and model lineage analysis
- Integrating dbt with AI agents for automated data modeling and testing
mongodb-mcp-server · Use cases
- AI agents querying and analyzing MongoDB databases without direct database access
- Automating MongoDB Atlas cluster management through MCP-enabled clients
- Building RAG applications that can access MongoDB data as contextual resources
dbt-mcp · Install
Installation
Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"dbt": {
"command": "npx",
"args": ["@dbt-labs/dbt-mcp"],
"env": {
"DBT_PROJECT_DIR": "/path/to/your/dbt/project"
}
}
}
}Other MCP clients
Use the experimental MCP bundle (dbt-mcp.mcpb) available in the latest release assets. Follow the [mcpb CLI](https://github.com/modelcontextprotocol/mcpb) documentation to install or inspect the bundle.
npm install -g @modelcontextprotocol/mcpb
mcpb install https://github.com/dbt-labs/dbt-mcp/releases/download/vX.X.X/dbt-mcp.mcpbmongodb-mcp-server · Install
Installation
Via NPM (for Claude Desktop)
{
"mcpServers": {
"MongoDB": {
"command": "npx",
"args": ["-y", "mongodb-mcp-server@latest", "--readOnly"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017/myDatabase"
}
}
}
}Via Docker
{
"mcpServers": {
"MongoDB": {
"command": "docker",
"args": [
"run",
"--rm",
"-e",
"MDB_MCP_READ_ONLY=true",
"-i",
"mongodb/mongodb-mcp-server:latest"
]
}
}
}