Skip to content

Commit 9376f00

Browse files
committed
fix format issues
1 parent ca99ca6 commit 9376f00

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow
268268
| `connectionString` | MongoDB connection string for direct database connections. Optional, if not set, you'll need to call the `connect` tool before interacting with MongoDB data. |
269269
| `logPath` | Folder to store logs. |
270270
| `disabledTools` | An array of tool names, operation types, and/or categories of tools that will be disabled. |
271-
| `readOnly` | When set to true, only allows read, connect, and metadata operation types, disabling create/update/delete operations. |
271+
| `readOnly` | When set to true, only allows read, connect, and metadata operation types, disabling create/update/delete operations. |
272272
| `indexCheck` | When set to true, enforces that query operations must use an index, rejecting queries that perform a collection scan. |
273273
| `telemetry` | When set to disabled, disables telemetry collection. |
274274

@@ -346,7 +346,6 @@ To use the Atlas API tools, you'll need to create a service account in MongoDB A
346346
> **ℹ️ Note:** For a detailed breakdown of the minimum required permissions for each Atlas operation, see the [Atlas API Permissions](#atlas-api-permissions) section below.
347347
348348
1. **Create a Service Account:**
349-
350349
- Log in to MongoDB Atlas at [cloud.mongodb.com](https://cloud.mongodb.com)
351350
- Navigate to Access Manager > Organization Access
352351
- Click Add New > Applications > Service Accounts
@@ -358,12 +357,10 @@ To use the Atlas API tools, you'll need to create a service account in MongoDB A
358357
To learn more about Service Accounts, check the [MongoDB Atlas documentation](https://www.mongodb.com/docs/atlas/api/service-accounts-overview/).
359358

360359
2. **Save Client Credentials:**
361-
362360
- After creation, you'll be shown the Client ID and Client Secret
363361
- **Important:** Copy and save the Client Secret immediately as it won't be displayed again
364362

365363
3. **Add Access List Entry:**
366-
367364
- Add your IP address to the API access list
368365

369366
4. **Configure the MCP Server:**

tests/integration/tools/atlas/clusters.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ describeWithAtlas("clusters", (integration) => {
204204
"You need to connect to a MongoDB instance before you can access its data."
205205
);
206206
expect(elements[1]?.text).toContain(
207-
'Please use one of the following tools: "atlas-connect-cluster", "connect" to connect to a MongoDB instance.'
207+
'Please use one of the following tools: "atlas-connect-cluster", "connect" to connect to a MongoDB instance'
208208
);
209209
});
210210
});

0 commit comments

Comments
 (0)