-
Notifications
You must be signed in to change notification settings - Fork 96
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 6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function sleep(ms: number) { | ||
return new Promise((resolve) => setTimeout(resolve, ms)); | ||
} |
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,96 @@ | ||
import { z } from "zod"; | ||
import { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; | ||
import { AtlasToolBase } from "../atlasTool.js"; | ||
import { ToolArgs, OperationType } from "../../tool.js"; | ||
import { sleep } from "../../../common/utils.js"; | ||
|
||
function generateSecurePassword(): string { | ||
// TODO: use a better password generator | ||
return `pwdMcp${Math.floor(Math.random() * 100000)}`; | ||
} | ||
|
||
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> { | ||
const cluster = await this.session.apiClient.getCluster({ | ||
params: { | ||
path: { | ||
groupId: projectId, | ||
clusterName, | ||
}, | ||
}, | ||
}); | ||
|
||
if (!cluster) { | ||
throw new Error("Cluster not found"); | ||
} | ||
|
||
if (!cluster.connectionStrings?.standardSrv || !cluster.connectionStrings?.standard) { | ||
throw new Error("Connection string not available"); | ||
} | ||
|
||
const username = `usrMcp${Math.floor(Math.random() * 100000)}`; | ||
|
||
const password = generateSecurePassword(); | ||
|
||
|
||
const expiryMs = 1000 * 60 * 60 * 12; // 12 hours | ||
const expiryDate = new Date(Date.now() + expiryMs); | ||
|
||
await this.session.apiClient.createDatabaseUser({ | ||
params: { | ||
path: { | ||
groupId: projectId, | ||
}, | ||
}, | ||
body: { | ||
databaseName: "admin", | ||
groupId: projectId, | ||
roles: [ | ||
{ | ||
roleName: "readWriteAnyDatabase", | ||
databaseName: "admin", | ||
}, | ||
], | ||
scopes: [{ type: "CLUSTER", name: clusterName }], | ||
username, | ||
password, | ||
awsIAMType: "NONE", | ||
ldapAuthType: "NONE", | ||
oidcAuthType: "NONE", | ||
x509Type: "NONE", | ||
deleteAfterDate: expiryDate.toISOString(), | ||
}, | ||
}); | ||
|
||
void sleep(expiryMs).then(async () => { | ||
// disconnect after 12 hours | ||
if (this.session.serviceProvider) { | ||
await this.session.serviceProvider.close(true); | ||
this.session.serviceProvider = undefined; | ||
} | ||
}); | ||
|
||
const connectionString = | ||
(cluster.connectionStrings.standardSrv || cluster.connectionStrings.standard || "").replace( | ||
"://", | ||
`://${username}:${password}@` | ||
) + `?authSource=admin`; | ||
|
||
await this.connectToMongoDB(connectionString); | ||
|
||
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
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.