Help us improve
Share bugs, ideas, or general feedback.
From documentdb
Provides tools for interacting with a document database, including read, write, and management operations. Supports authentication and connection profiles.
npx claudepluginhub azure/documentdb-agent-kit --plugin documentdbCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"documentdb": {
"command": "npx",
"args": [
"-y",
"documentdb-mcp-server"
],
"env": {
"TRANSPORT": "stdio",
"AUTH_REQUIRED": "false",
"ENABLE_READ_TOOLS": "true",
"TRUST_LOCAL_STDIO": "true",
"ENABLE_WRITE_TOOLS": "false",
"CONNECTION_PROFILES": "${DOCUMENTDB_CONNECTION_PROFILES}",
"ENABLE_MANAGEMENT_TOOLS": "false"
}
}
}
}Replace placeholder values for: AUTH_REQUIRED
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
TRANSPORT=stdioAUTH_REQUIRED=falseENABLE_READ_TOOLS=trueTRUST_LOCAL_STDIO=trueENABLE_WRITE_TOOLS=falseCONNECTION_PROFILES=${DOCUMENTDB_CONNECTION_PROFILES}ENABLE_MANAGEMENT_TOOLS=falseSensitive values you must provide — never committed to source control
Declared capabilities of this MCP server
Share bugs, ideas, or general feedback.