Skip to content

Commit 4853a85

Browse files
authored
chore(main): Add Gemini CLI extension instructions to README.md (#51)
* chore(main): Add Gemini CLI extension instructions to README.md * chore(main): minor README update
1 parent 2388024 commit 4853a85

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

README.md

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,38 @@
66

77
## **Description**
88

9-
This repository contains the Google Maps Platform Code Assist toolkit, a Model Context Protocol (MCP) server that enhances the responses from large language models (LLMs) used for developing applications with the Google Maps Platform by grounding them in the official, up-to-date documentation and code samples.
10-
11-
For more information about installing and using the toolkit, as well as terms of use, see the [Code Assist toolkit README](packages/code-assist/README.md).
9+
This repository contains the [Google Maps Platform Code Assist toolkit](packages/code-assist/README.md), a Model Context Protocol (MCP) server that enhances the responses from large language models (LLMs) used for developing applications with the Google Maps Platform by grounding them in the official, up-to-date documentation and code samples.
10+
11+
## Install the Google Maps Platform Code Assist extension for [Gemini CLI](https://geminicli.com/)
12+
13+
1. Install the Gemini CLI ([alternative installation methods](https://geminicli.com/docs/get-started/deployment/))
14+
15+
```bash
16+
npm install -g @google/gemini-cli
17+
```
18+
19+
2. Install the Google Maps Platform extension
20+
21+
* Option 1 - Install Code Assist as a Gemini CLI extension with static preamble, the MCP tool, and basic Google Maps theme:
22+
```bash
23+
gemini extensions install https://github.com/googlemaps/platform-ai.git
24+
```
25+
* Verify the installation by running `gemini mcp list`.
26+
* Option 2 - Add the MCP server config manually to your `~/.gemini/settings.json` file.
27+
```json
28+
{
29+
"mcpServers": {
30+
"google-maps-platform-code-assist": {
31+
"command": "npx",
32+
"args": ["-y", "@googlemaps/code-assist-mcp@latest"]
33+
}
34+
}
35+
}
36+
```
37+
38+
## Install the Google Maps Platform Code Assist toolkit for other MCP clients.
39+
40+
For information about installing and using the toolkit with any MCP client, as well as terms of use, see the [Code Assist toolkit README](packages/code-assist/README.md).
1241

1342
## Sample Prompts
1443

0 commit comments

Comments
 (0)