-
Notifications
You must be signed in to change notification settings - Fork 41
feat: add atlas-connect-cluster tool #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
aa4b290
feat: add atlas-connect-cluster tool
fmenezes 308e195
fix: styles
fmenezes fe3ea13
fix: docs
fmenezes a1fcd65
fix: enable ips
fmenezes 61df0df
fix: styles
fmenezes 6f2ab22
fix: make ip changes smooth
fmenezes aea39a9
fix: delete currently connected user
fmenezes 2f31cab
Merge branch 'main' into fmenezes/atlas_connect_tool
fmenezes b756eab
fix: error codes
fmenezes 5043894
fix: error codes
fmenezes c1bfdcc
fix: access
fmenezes bd25b0c
fix: disconnect
fmenezes 197b800
Merge branch 'main' into fmenezes/atlas_connect_tool
fmenezes 46a34df
Update src/tools/atlas/metadata/connectCluster.ts
fmenezes 19c2db9
Update src/session.ts
fmenezes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
import { z } from "zod"; | ||
import { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; | ||
import { AtlasToolBase } from "../atlasTool.js"; | ||
import { ToolArgs, OperationType } from "../../tool.js"; | ||
import { randomBytes } from "crypto"; | ||
import { promisify } from "util"; | ||
|
||
const EXPIRY_MS = 1000 * 60 * 60 * 12; // 12 hours | ||
|
||
const randomBytesAsync = promisify(randomBytes); | ||
|
||
async function generateSecurePassword(): Promise<string> { | ||
const buf = await randomBytesAsync(16); | ||
const pass = buf.toString("base64url"); | ||
return pass; | ||
} | ||
|
||
export class ConnectClusterTool extends AtlasToolBase { | ||
protected name = "atlas-connect-cluster"; | ||
protected description = "Connect to MongoDB Atlas cluster"; | ||
protected operationType: OperationType = "metadata"; | ||
protected argsShape = { | ||
projectId: z.string().describe("Atlas project ID"), | ||
clusterName: z.string().describe("Atlas cluster name"), | ||
}; | ||
|
||
protected async execute({ projectId, clusterName }: ToolArgs<typeof this.argsShape>): Promise<CallToolResult> { | ||
await this.session.disconnect(); | ||
|
||
const cluster = await this.session.apiClient.getCluster({ | ||
params: { | ||
path: { | ||
groupId: projectId, | ||
clusterName, | ||
}, | ||
}, | ||
}); | ||
|
||
if (!cluster) { | ||
throw new Error("Cluster not found"); | ||
} | ||
|
||
const baseConnectionString = cluster.connectionStrings?.standardSrv || cluster.connectionStrings?.standard; | ||
|
||
if (!baseConnectionString) { | ||
throw new Error("Connection string not available"); | ||
} | ||
|
||
const username = `mcpUser${Math.floor(Math.random() * 100000)}`; | ||
const password = await generateSecurePassword(); | ||
|
||
const expiryDate = new Date(Date.now() + EXPIRY_MS); | ||
|
||
const readOnly = | ||
this.config.readOnly || | ||
(this.config.disabledTools?.includes("create") && | ||
this.config.disabledTools?.includes("update") && | ||
this.config.disabledTools?.includes("delete") && | ||
!this.config.disabledTools?.includes("read") && | ||
!this.config.disabledTools?.includes("metadata")); | ||
|
||
const roleName = readOnly ? "readAnyDatabase" : "readWriteAnyDatabase"; | ||
|
||
await this.session.apiClient.createDatabaseUser({ | ||
params: { | ||
path: { | ||
groupId: projectId, | ||
}, | ||
}, | ||
body: { | ||
databaseName: "admin", | ||
groupId: projectId, | ||
roles: [ | ||
{ | ||
roleName, | ||
databaseName: "admin", | ||
}, | ||
], | ||
scopes: [{ type: "CLUSTER", name: clusterName }], | ||
username, | ||
password, | ||
awsIAMType: "NONE", | ||
ldapAuthType: "NONE", | ||
oidcAuthType: "NONE", | ||
x509Type: "NONE", | ||
deleteAfterDate: expiryDate.toISOString(), | ||
}, | ||
}); | ||
|
||
this.session.connectedAtlasCluster = { | ||
username, | ||
projectId, | ||
clusterName, | ||
expiryDate, | ||
}; | ||
|
||
const cn = new URL(baseConnectionString); | ||
cn.username = username; | ||
cn.password = password; | ||
cn.searchParams.set("authSource", "admin"); | ||
const connectionString = cn.toString(); | ||
|
||
await this.session.connectToMongoDB(connectionString, this.config.connectOptions); | ||
|
||
return { | ||
content: [ | ||
{ | ||
type: "text", | ||
text: `Connected to cluster "${clusterName}"`, | ||
}, | ||
], | ||
}; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.