https://github.com/hi120ki/mcp-vertex-ai-search-ts-stdio
MCP Server for Vertex AI Search
https://github.com/hi120ki/mcp-vertex-ai-search-ts-stdio
Last synced: 5 months ago
JSON representation
MCP Server for Vertex AI Search
- Host: GitHub
- URL: https://github.com/hi120ki/mcp-vertex-ai-search-ts-stdio
- Owner: hi120ki
- License: mit
- Created: 2025-05-13T14:08:53.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-13T14:37:53.000Z (5 months ago)
- Last Synced: 2025-05-13T15:45:24.640Z (5 months ago)
- Language: TypeScript
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MCP Server for Vertex AI Search
## Overview
This is a MCP server (Stdio) for Vertex AI Search (Discovery Engine).
## Usage
For cursor, execute the following command to login to Google Cloud, and add the following to the `mcp.json` file.
```bash
$ gcloud auth login --update-adc
``````json
{
"mcpServers": {
"vertex-ai-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "PROJECT",
"-e", "LOCATION",
"-e", "ENGINE",
"-e", "LANGUAGE",
"-e", "GOOGLE_APPLICATION_CREDENTIALS=/tmp/adc.json",
"-v", "~/.config/gcloud/application_default_credentials.json:/tmp/adc.json:ro",
"ghcr.io/hi120ki/mcp-vertex-ai-search-ts-stdio@sha256:8bc5027cd219cdcd0d6860e2e6a7a4059d566bb3b55dc5fdcbd7a1ebba52aeff"
],
"env": {
"PROJECT": "",
"LOCATION": "global",
"ENGINE": "",
"LANGUAGE": "en-US"
}
}
}
}
```## References
- [Vertex AI Search](https://cloud.google.com/enterprise-search)
- [Introduction to Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction)## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.