mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-09 15:38:08 -05:00
## Description
- [x] corrected config for the mssql.
- [x] Updated/Corrected the MCP config of copilot as per the latest
official docs
```json
//correct config
{
"servers": {
"postgres": {
"type": "stdio",
"command": "path",
"args": [
"--prebuilt",
"postgres",
"--stdio"
],
"env": {
"POSTGRES_HOST": "localhost",
"POSTGRES_PORT": "5432",
"POSTGRES_DATABASE": "qlms_db",
"POSTGRES_USER": "",
"POSTGRES_PASSWORD": ""
}
},
}
}
```
```json
//outdated/wrong config 1
{
"mcpServers": {
"postgres": {
"type": "stdio",
"command": "path",
"args": [
"--prebuilt",
"postgres",
"--stdio"
],
"env": {
"POSTGRES_HOST": "localhost",
"POSTGRES_PORT": "5432",
"POSTGRES_DATABASE": "qlms_db",
"POSTGRES_USER": "",
"POSTGRES_PASSWORD": ""
}
},
}
}
//outdated/wrong config 2
{
"mcp":{
"servers": {
"postgres": {
"type": "stdio",
"command": "path",
"args": [
"--prebuilt",
"postgres",
"--stdio"
],
"env": {
"POSTGRES_HOST": "localhost",
"POSTGRES_PORT": "5432",
"POSTGRES_DATABASE": "qlms_db",
"POSTGRES_USER": "",
"POSTGRES_PASSWORD": ""
}
},
}
}
}
```
## PR Checklist
- [x] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [x] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/langchain-google-alloydb-pg-python/issues/new/choose)
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
🛠️ Fixes: https://github.com/googleapis/genai-toolbox/issues/1252
---------
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
Co-authored-by: Averi Kitsch <akitsch@google.com>
393 B
393 B
title, type, weight, description
| title | type | weight | description |
|---|---|---|---|
| Firestore using MCP | docs | 2 | Connect your IDE to Firestore using Toolbox. |