MongoDB Atlas MCP Server
OfficialMongoDB Atlas MCP サーバー
MongoDB Atlasプロジェクトを管理するためのMCP(Model Context Protocol)サーバー。このパッケージは、MongoDB Atlasクラスター、ユーザー、およびMCPインターフェースを介してネットワークアクセスを作成および管理するためのツールを提供します。
デモビデオ

MongoDB Atlas MCP Server の動作を確認するには、デモ ビデオをご覧ください。
Related MCP server: MongoDB MCP Server
特徴
MCPツール
create_atlas_cluster- 既存のプロジェクトに新しい MongoDB Atlas クラスターを作成するsetup_atlas_network_access- Atlas プロジェクトのネットワーク アクセスを構成するcreate_atlas_user- atlasAdmin ロールを持つ新しいデータベース ユーザーを作成しますget_atlas_connection_strings- クラスターの接続文字列を取得するlist_atlas_projects- 提供された API キーでアクセス可能なすべての Atlas プロジェクトを一覧表示しますlist_atlas_clusters- 特定の Atlas プロジェクト内のすべてのクラスターを一覧表示します
インストール
npm install mcp-mongodb-atlas使用法
コマンドラインツールとして
Atlas プロジェクト マネージャーをコマンド ラインから直接実行できます。
# Using environment variables
export ATLAS_PUBLIC_KEY="your-public-key"
export ATLAS_PRIVATE_KEY="your-private-key"
npx mcp-mongodb-atlas
# Or passing keys as arguments
npx mcp-mongodb-atlas "your-public-key" "your-private-key"Cline(VSCode拡張機能)を使用
VSCode で Cline を使用するには、MCP 設定ファイルにサーバー構成を追加します。
{
"mcpServers": {
"atlas": {
"command": "npx",
"args": ["mcp-mongodb-atlas"],
"env": {
"ATLAS_PUBLIC_KEY": "your-public-key",
"ATLAS_PRIVATE_KEY": "your-private-key"
},
"disabled": false,
"autoApprove": []
}
}
}MCP 設定ファイルは次の場所にあります。
macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonWindows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonLinux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
カーソル付き
カーソルで使用するには、設定で「カーソル設定」>「MCP」に移動し、次の構成で新しいサーバーを追加します。
名前:
atlas(または任意の名前)コマンド:
npx mcp-mongodb-atlas引数: APIキーを引数として指定します
## Suggested Command
npx mcp-mongodb-atlas <public_key> <private_key>新しいバージョンでは、次のように~/.cursor/mcp.jsonファイルを設定できます。
{
"mcpServers": {
"atlas": {
"command": "npx",
"args": ["mcp-mongodb-atlas"],
"env": {
"ATLAS_PUBLIC_KEY": "your-public-key",
"ATLAS_PRIVATE_KEY": "your-private-key"
},
"disabled": false,
"autoApprove": []
}
}
}環境変数(オプション):
ATLAS_PUBLIC_KEY: MongoDB Atlasの公開鍵ATLAS_PRIVATE_KEY: MongoDB Atlasの秘密鍵
クロード・デスクトップ
Claude Desktop で使用するには、サーバー設定を追加します。
macOS の場合: ~/Library/Application Support/Claude/claude_desktop_config.json Windows の場合: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"atlas": {
"command": "npx",
"args": ["mcp-mongodb-atlas"],
"env": {
"ATLAS_PUBLIC_KEY": "your-public-key",
"ATLAS_PRIVATE_KEY": "your-private-key"
}
}
}
}APIキー
このツールを使用するには、MongoDB Atlas APIキーが必要です。APIキーを作成するには、以下の手順を実行してください。
MongoDB Atlasアカウントにログインする
アクセスマネージャー > APIキーに移動します
適切な権限を持つ新しいAPIキーを作成する
公開鍵と秘密鍵を保存する
発達
リポジトリをクローンし、依存関係をインストールします。
git clone https://github.com/mongodb-developer/mcp-mongodb-atlas.git
cd mcp-mongodb-atlas
npm installプロジェクトをビルドします。
npm run build自動リビルドを使用した開発の場合:
npm run watchデバッグ
MCPサーバーはstdio経由で通信するため、デバッグが困難になる場合があります。MCP Inspectorの使用をお勧めします。
npm run inspectorインスペクターは、ブラウザでデバッグ ツールにアクセスするための URL を提供します。
ライセンス
マサチューセッツ工科大学
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables large language models to interact directly with MongoDB databases, allowing them to query collections, inspect schemas, and manage data through natural language.27MIT

MongoDB MCP Serverofficial
AlicenseBqualityAmaintenanceA Model Context Protocol server that enables AI assistants to interact with MongoDB Atlas resources through natural language, supporting database operations and Atlas management functions.2874,6851,108Apache 2.0- AlicenseAqualityBmaintenanceA Model Context Protocol server that enables interaction with MongoDB databases and MongoDB Atlas, allowing users to perform database operations and manage Atlas resources through natural language.2274,685Apache 2.0
- AlicenseCqualityDmaintenanceA Model Context Protocol server that provides access to the MongoDB Atlas API, enabling management of clusters, users, projects, backups, and more through MCP tools.76153MIT
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
An MCP server that integrates with Discord to provide AI-powered features.
Cloud-hosted MCP server for durable AI memory
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mongodb-developer/mcp-mongodb-atlas'
If you have feedback or need assistance with the MCP directory API, please join our Discord server