Embabel Mongo
FreeNot checkedA demo MCP server for MongoDB built using Embabel. It showcases how AI agents can interact with MongoDB through the Model Context Protocol, enabling operations
About
A demo MCP server for MongoDB built using Embabel. It showcases how AI agents can interact with MongoDB through the Model Context Protocol, enabling operations such as listing databases, fetching collections, executing simple and complex queries, managing indexes, creating collections, and inserting documents
README
This repository demonstrates how to build a MongoDB MCP Server using the Embabel Framework and Spring Boot. The application acts as a bridge between AI agents (like Claude Desktop) and your MongoDB Database, allowing the AI to list databases, run complex queries, and insert documents through natural language.
⚠️ Note: This is not an official MongoDB MCP server. It is a demo MCP server created specifically to demonstrate how developers can build their own MCP servers that interact with databases using the Embabel Framework.
📖 Complete Guide: For detailed explanations and a full code walkthrough, read our comprehensive tutorial.
👉 Build MongoDB MCP Server Using Embabel Framework
🎥 Video Tutorial: Prefer hands-on learning? Watch our step-by-step implementation guide.
👉 YouTube Tutorial - Build a MongoDB MCP Server Using Embabel Framework | Chat With Your Database using AI
✨ What This Project Demonstrates
This application showcases how to connect AI agents to a Database using the MCP Server:
- Model Context Protocol (MCP) implementation using Embabel framework.
- Database Integration connecting an AI agent to MongoDB.
- Tool Exposure using Embabel's
@Exportannotation to turn Java service methods into AI tools. - Data Operations including listing databases/collections, executing simple & complex JSON queries, managing indexes, and inserting documents.
📋 Prerequisites
Before running this application, ensure you have:
- Java 21 or higher
- OpenRouter API Key (free tier available at OpenRouter.ai)
- MongoDB Instance (Running locally on port 27017 or via MongoDB Atlas)
- Node.js (Optional, required if testing with MCP Inspector)
- Claude Desktop App (Optional, for real-world agent testing)
🚀 Quick Start
1️⃣ Clone the Repository
git clone https://github.com/BootcampToProd/embabel-mongo-mcp-server.git
cd embabel-mongo-mcp-server
2️⃣ Configure Environment Variables
Provide your OpenRouter API key and MongoDB connection details.
OPENAI_API_KEY={YOUR_OPENROUTER_API_KEY}
MONGO_HOST=localhost
MONGO_PORT=27017
3️⃣ Build the Project
mvn clean install
4️⃣ Run the Application
mvn spring-boot:run
The server will start on http://localhost:8080. The MCP endpoint is exposed at /sse.
💡 How to Test
You can test the server using Claude Desktop or the MCP Inspector.
🤖 Option 1: Claude Desktop (Recommended)
Open your Claude Desktop configuration file:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Mac:
Add the following configuration:
{
"mcpServers": {
"embabel-mongo-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://localhost:8080/sse"
]
}
}
}
Restart Claude Desktop. You should see your mcp server and available tools.
Ask Claude:
- "List all databases."
- "Create a collection named 'users' in 'test_db'."
- "Insert a user named Alice with age 28 into 'test_db.users'."
- "Find all users in 'test_db.users' where age is greater than 25."
🔍 Option 2: MCP Inspector
If you want to debug the tools manually:
- Ensure the Spring Boot app is running.
- Run the inspector in your terminal:
npx @modelcontextprotocol/inspector - In the browser window that opens:
- Select SSE.
- Enter URL:
http://localhost:8080/sse. - Click Connect and test the tools via the UI.
Installing Embabel Mongo
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/BootcampToProd/embabel-mongo-mcp-serverFAQ
Is Embabel Mongo MCP free?
Yes, Embabel Mongo MCP is free — one-click install via Unyly at no cost.
Does Embabel Mongo need an API key?
No, Embabel Mongo runs without API keys or environment variables.
Is Embabel Mongo hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Embabel Mongo in Claude Desktop, Claude Code or Cursor?
Open Embabel Mongo on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolRedis
Interact with Redis key-value stores.
by modelcontextprotocolSQLite
Database interaction and business intelligence capabilities.
by modelcontextprotocolmxcp
Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.
by raw-labstadas-github/a2asearch-mcp
MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access
by tadas-githubjulien040/anyquery
Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi
by julien040drakonkat/wizzy-mcp-tmdb
A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.
by drakonkatCompare Embabel Mongo with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
