You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -607,6 +607,70 @@ my-plugin/
607
607
└── index.ts # Programmatic entry point
608
608
```
609
609
610
+
## MCP (Model Context Protocol)
611
+
612
+
Gitagent is an **MCP client**: point it at any [MCP server](https://modelcontextprotocol.io) and that server's tools are automatically discovered and made available to the agent — no integration code to write. This unlocks the whole ecosystem of ready-made servers (filesystem, GitHub, Postgres, Slack, fetch, …).
On startup gitagent connects to each server, lists its tools, and registers them as **`<server>__<tool>`** (e.g. `filesystem__read_file`, `analytics__query`). Connections are torn down automatically when the session ends.
637
+
638
+
| Field | Applies to | Description |
639
+
|---|---|---|
640
+
| `command` / `args` / `env` / `cwd` | stdio | How to launch a local server |
641
+
| `type: http \| sse` + `url` + `headers` | remote | Connect to a remote server |
0 commit comments