Skip to Content
ResourcesIntegrationsDatabasesMongoDB

MongoDB

MongoDB icon
Community

Tools to query and explore a MongoDB database

Author:Arcade
Version:0.4.1
Auth:No authentication required
6tools
6require secrets

The MongoDB toolkit connects Arcade to a MongoDB instance, enabling agents and tools to explore, query, and aggregate data across databases and collections.

Capabilities

  • Discovery: Enumerate all databases in a MongoDB instance and all collections within a database, establishing the context needed before any query runs.
  • Schema inference: Sample documents from a collection to infer field names and data types — essential since MongoDB is schema-less and must be introspected at runtime before querying.
  • Document retrieval & counting: Find documents with filtering, projection, sorting, and MongoDB query operators ($gte, $lte, $in, $regex, etc.); count matching documents without fetching them.
  • Aggregation pipelines: Execute multi-stage pipelines ($match, $group, $project, $sort, $limit, $lookup, and more) for complex data processing and cross-collection joins.

Secrets

MONGODB_CONNECTION_STRING — The full connection URI used to authenticate and connect to your MongoDB instance (e.g., mongodb+srv://user:password@cluster.mongodb.net/dbname). It encodes the username, password, host(s), and any connection options. Obtain it from your MongoDB provider:

  • MongoDB Atlas: Navigate to your cluster → ConnectDrivers → copy the connection string, substituting your database user credentials. See the Atlas connection string docs.
  • Self-hosted / MongoDB Community: Construct the URI from your host, port, and credentials (e.g., mongodb://username:password@host:27017/dbname). See the connection string URI format docs.

Store this value as an Arcade secret. See Arcade secret configuration and manage secrets at https://api.arcade.dev/dashboard/auth/secrets.

Available tools(6)

6 of 6 tools
Operations
Behavior
Tool nameDescriptionSecrets
Execute a MongoDB aggregation pipeline on a collection. ONLY use this tool if you have already loaded the schema of the collection you need to query. Use the <get_collection_schema> tool to load the schema if not already known. Returns a list of JSON strings, where each string represents a result document from the aggregation (tools cannot return complex types). Aggregation pipelines allow for complex data processing including: * $match - filter documents * $group - group documents and perform calculations * $project - reshape documents * $sort - sort documents * $limit - limit results * $lookup - join with other collections * And many more stages
1
Count documents in a MongoDB collection matching the given filter.
1
Discover all the collections in the MongoDB database. Use when the list of collections is not known. ALWAYS use this tool before any other tool that requires a collection name.
1
Discover all the databases in the MongoDB instance.
1
Find documents in a MongoDB collection. ONLY use this tool if you have already loaded the schema of the collection you need to query. Use the <get_collection_schema> tool to load the schema if not already known. Returns a list of JSON strings, where each string represents a document from the collection (tools cannot return complex types). When running queries, follow these rules which will help avoid errors: * Always specify projection to limit fields returned if you don't need all data. * Always sort your results by the most relevant fields first. Use '_id' if you're unsure. * Use appropriate MongoDB query operators for complex filtering ($gte, $lte, $in, $regex, etc.). * Be mindful of case sensitivity when querying string fields. * Use indexes when possible (typically on _id and commonly queried fields).
1
Get the schema/structure of a MongoDB collection by sampling documents. Since MongoDB is schema-less, this tool samples a configurable number of documents to infer the schema structure and data types. This tool should ALWAYS be used before executing any query. All collections in the query must be discovered first using the <discover_collections> tool.
1
Last updated on