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
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ brews:
name: cobrowser
email: go@cobrowser.xyz
homepage: "https://cobrowser.xyz"
description: "a browser for agents"
description: "Performant MCP aggregator"
scoops:
- name: agent-browser
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
Expand All @@ -190,7 +190,7 @@ scoops:
name: cobrowser
email: go@cobrowser.xyz
homepage: "https://cobrowser.xyz"
description: "a browser for agents"
description: "Performant MCP aggregator"
license: MIT
archives:
- id: release/version
Expand Down
42 changes: 30 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,20 @@ Agent Browser eliminates the need to configure each MCP server in every client.
<th align="center">With Agent Browser</th>
</tr>
<tr>
<td>
<pre>
Client ─────► MCP Server
└────► MCP Server
</pre>
<td valign="top" style="border-left: 4px solid #d9534f; padding-left: 15px;">
<ul style="list-style-type: none; padding-left: 0;">
<li>✓ Add new server in Cursor</li>
<li>✓ Add new server in Windsurf Client</li>
<li>✓ Add new server in Claude Client</li>
<li>✓ Repeat for each additional client</li>
<li>✓ Update all clients when server changes</li>
</ul>
</td>
<td>
<pre>
Client ─────► Agent Browser ─────► MCP Server
└─────► MCP Server
</pre>
<td valign="top" style="border-left: 4px solid #5cb85c; padding-left: 15px;">
<ul style="list-style-type: none; padding-left: 0;">
<li>✓ Add new server once in Agent Browser UI</li>
<li>✓ Update once in Agent Browser when server changes</li>
</ul>
</td>
</tr>
</table>
Expand Down Expand Up @@ -152,6 +153,23 @@ The Agent Browser exposes a REST API for integration. For details on accessing t

---

## Future Direction

We plan to expand Agent Browser to support additional protocols like A2A and ACP, alongside MCP.

```
Client
Agent Browser
/ │ \
/ │ \
▼ ▼ ▼
MCP A2A ACP ...
```

---

## Development

### Prerequisites
Expand Down
Loading