Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Git Extension
title: GitMCP Extension
description: Add Git MCP Server as a Goose Extension
---

Expand Down Expand Up @@ -56,7 +56,7 @@ This tutorial covers how to add the [Git MCP Server](https://github.com/idosal/g

## Example Usage

In this example, Goose uses GitMCP to pull real-time documentation from the openai/whisper GitHub repository, explore how the speech-to-text model works, and surface accurate setup instructions and command-line usage—all directly from the source.
In this example, Goose uses GitMCP to pull real-time documentation from the `openai/whisper` GitHub repository, explore how the speech-to-text model works, and surface accurate setup instructions and command-line usage—all directly from the source.

<Tabs groupId="interface">
<TabItem value="ui" label="Goose Desktop" default>
Expand All @@ -74,19 +74,19 @@ In this example, Goose uses GitMCP to pull real-time documentation from the open
</Tabs>

### Goose Prompt
```
Can you help me understand how the OpenAI Whisper speech-to-text model works?

Can you help me understand how the OpenAI Whisper speech-to-text model works?
Use the GitHub repository `openai/whisper` to find accurate information.

Use the GitHub repository `openai/whisper` to find accurate information.

Please:
- Summarize what the model does and its key features
- Show an example of how to run it from the command line
- Explain what files or models are needed to get started
- Include any useful code snippets or setup instructions you find in the repo

Give me the response in a Markdown guide format.
Please:
- Summarize what the model does and its key features
- Show an example of how to run it from the command line
- Explain what files or models are needed to get started
- Include any useful code snippets or setup instructions you find in the repo

Give me the response in a Markdown guide format.
```
### Goose Output

:::note Desktop
Expand Down
10 changes: 10 additions & 0 deletions documentation/static/servers.json
Original file line number Diff line number Diff line change
Expand Up @@ -572,5 +572,15 @@
"is_builtin": false,
"endorsed": false,
"environmentVariables": []
},
{
"id": "gitmcp",
"name": "GitMCP",
"description": "Gets latest documentation for any GitHub project",
"command": "npx -y mcp-remote https://gitmcp.io/docs",
"link": "https://github.com/idosal/git-mcp",
"is_builtin": false,
"endorsed": false,
"environmentVariables": []
}
]
Loading