documentation/docs/mcp/mongodb-mcp.md
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import GooseDesktopInstaller from '@site/src/components/GooseDesktopInstaller'; import CLIExtensionInstructions from '@site/src/components/CLIExtensionInstructions';
The MongoDB MCP Server extension allows goose to interact directly with your MongoDB databases, enabling comprehensive database operations including querying, document manipulation, collection management, and database administration. This makes it easy to work with your MongoDB databases through natural language interactions.
:::tip Quick Install <Tabs groupId="interface"> <TabItem value="ui" label="goose Desktop" default> Launch the installer </TabItem> <TabItem value="cli" label="goose CLI"> Command
npx -y mongodb-mcp-server --connection-string mongodb://localhost:27017
The MongoDB MCP server connects to a single MongoDB database instance using a connection string. The connection string must be specified using the --connection-string flag. We're using mongodb://localhost:27017 as an example here to access a local MongoDB instance, but you can configure this for your own environment.
The MongoDB connection string follows this format:
mongodb://username:password@hostname:27017/database
Where:
username: Your MongoDB user (optional for local development)password: Your MongoDB password (optional for local development)hostname: The host where MongoDB is running (e.g., localhost, IP address, or domain)27017: The default MongoDB port (change if using a different port)database: The name of your database (optional, will connect to default)Examples:
mongodb://localhost:27017mongodb://myuser:mypass@localhost:27017/mydbmongodb+srv://user:[email protected]/database:::caution Never commit connection strings with credentials to version control! Use environment variables or secure configuration management. For MongoDB Atlas, ensure your IP address is whitelisted and use strong passwords. :::
:::info
Note that you'll need Node.js installed on your system to run this command, as it uses npx. You'll also need a running MongoDB instance or access to MongoDB Atlas.
:::
:::info Configure Your Connection String
If needed, [update the extension](/docs/getting-started/using-extensions#updating-extension-properties) to match to your [MongoDB environment](#customizing-your-connection). For example, change the connection string in the `command` property to use the `mongodb://username:password@hostname:27017/database` format.
:::
The MongoDB extension provides comprehensive database management capabilities through natural language interactions. You can perform a wide range of operations including:
Just describe what you want to accomplish in natural language, and goose will help you execute the appropriate MongoDB operations safely and efficiently.
Update all users in the premium tier who haven't logged in for more than 90 days - set their status to 'inactive' and add a note about when this change was made.
I've successfully updated inactive premium users using updateMany:
db.users.updateMany(
{
subscriptionTier: "premium",
lastLogin: { $lt: new Date(Date.now() - 90 * 24 * 60 * 60 * 1000) }
},
{
$set: {
status: "inactive",
inactiveNote: "Auto-updated to inactive on 2025-05-25 due to 90+ days of inactivity",
lastModified: new Date()
}
}
)
Operation Result:
{
acknowledged: true,
matchedCount: 23,
modifiedCount: 23,
upsertedId: null,
upsertedCount: 0
}
Updated 23 premium tier users who hadn't logged in since February 24, 2025. Each document now has:
• status: "inactive"
• inactiveNote: explains the automatic status change
• lastModified: timestamp of this operation
Consider sending re-engagement emails to these users or reviewing their subscription status.