MongoDB
Query a MongoDB database directly: introspect collections and their field shapes, and run read-only find queries with filter, projection, sort and limit. Installs read-only; credentials are held encrypted rather than in the connection string.
7 giorni gratis · senza carta · hosting UE
Chiedi qualsiasi cosa a MongoDB
Prova un prompt reale su MongoDB via AnythingMCP — Claude chiama i tool e risponde. Premi Enter sul tuo messaggio per installare su Cloud.
Installa MongoDB su CloudClaude è un'AI e può sbagliare. Verifica sempre le risposte.
Setup in 2 minuti
- 1Avvia la trial gratuita su cloud.anythingmcp.com.
- 2Clicca MongoDB nel connector store. Incolla le credenziali quando richiesto.
- 3Genera una MCP API key e punta il client AI all'URL MCP generato.
Guide per MongoDB
Setup passo-passo per i principali client AI.
Configurare MongoDB
Direttamente dalla definizione del connettore: dove trovare le credenziali, quali permessi servono e con quale API parla questo adapter. Fornite in inglese dall'autore del connettore.
Setup
- Create a user with only
readon the database the agent should see:use admin db.createUser({ user: "amcp_reader", pwd: "change-me", roles: [{ role: "read", db: "shop" }] }) - Set
MONGODB_HOST,MONGODB_PORT(27017),MONGODB_DATABASE,MONGODB_USERandMONGODB_PASSWORD.
MONGODB_AUTH_SOURCE is the field that decides whether this works at all. MongoDB authenticates a user against the database the user was created in, not the one you want to read. A root or admin account created the usual way lives in admin, so MONGODB_AUTH_SOURCE must be admin even though MONGODB_DATABASE is shop. A user created inside the target database with use shop; db.createUser(...) takes the database name instead. Get this wrong and every single call comes back with Authentication failed. and code 18 — a message that says nothing about which database it tried.
MongoDB Atlas uses mongodb+srv:// and a different host shape. This adapter builds a plain mongodb://host:port/db DSN, which works for a self-managed replica set or a standalone server. For Atlas, create a custom connector with the full mongodb+srv://cluster0.abcde.mongodb.net/shop URI instead — the SRV form resolves the replica set from DNS and cannot be assembled from a host and a port.
Queries are JSON, not SQL. mongodb_find takes a JSON object:
{"collection": "orders",
"filter": {"status": "paid", "total": {"$gt": 100}},
"projection": {"_id": 0, "orderNo": 1, "total": 1},
"sort": {"createdAt": -1},
"limit": 50}
Only collection is required. Extended-JSON types ($oid, $date) are not converted, so match an ObjectId by its containing field where you can, or by the string form if the collection stores it that way.
The convenience tools have no optional arguments. mongodb_find_recent and mongodb_matching build their query by substituting every placeholder in a JSON template, so a missing argument leaves a hole and the spec fails to parse. Pass all of them, or use mongodb_find, which takes the whole spec as one string and lets you leave out whatever you do not need.
mongodb_schema samples one document per collection and reports the field names and inferred types, plus an estimated document count. It is the map to draw before composing a filter — MongoDB has no information_schema, and a collection's shape is a convention rather than a constraint.
How a database connector behaves
- It installs read-only. The engine rejects anything that is not a read until you flip the switch in the connector's settings. That is a guard rail, not a security boundary: give the connection a
readrole and the guard rail never has to matter. - Credentials live in the encrypted
authConfig, not in the connection string.MONGODB_USERandMONGODB_PASSWORDare stored encrypted and spliced into the URI at call time. - Results are capped at 1000 documents, and
limitis capped at the same number. Aggregate in the query rather than in the agent.
Reachable from where?
- On AnythingMCP Cloud the server must accept connections from the public internet, which for a production database usually means it should not. Point the connector at a secondary, or self-host AnythingMCP inside the network.
- Self-hosted, add the host to
SSRF_ALLOWED_HOSTS: the outbound guard blocks private address space by default, and10.0.0.5is exactly the shape it is there to block.
La tua AI è a due click da MongoDB.
Installa il connettore, incolla le credenziali, chiedi all'AI. 7 giorni gratis, niente carta.