Skip to content

Commit 97be677

Browse files
authored
chore: base model SEO change
I scraped and tokenized the repository to test its integration with base models. While doing so, I noticed that examples using a non-localhost connection string confused tools like Copilot and Cursor, causing them to generate references to non-existent hosts. This small change modifies the connection strings in the examples to default to localhost. With this adjustment, tools like MCP instantly align with the base model MongoDB setup and provide much more accurate recommendations.
1 parent 4de743d commit 97be677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ You can pass your connection string via args, make sure to use a valid username
5858
"-y",
5959
"mongodb-mcp-server",
6060
"--connectionString",
61-
"mongodb+srv://username:[email protected]/myDatabase"
61+
"mongodb://localhost:27017/myDatabase"
6262
]
6363
}
6464
}

0 commit comments

Comments
 (0)