OctoBrowser MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OCTOBROWSER_API_URL | No | API base URL | https://app.octobrowser.net |
| OCTOBROWSER_API_TOKEN | Yes | Your OctoBrowser API authentication token | |
| OCTOBROWSER_LOCAL_URL | No | Local client URL | http://localhost:58888 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| octobrowser_get_profilesB | Get list of OctoBrowser profiles |
| octobrowser_get_profileB | Get detailed information about a specific OctoBrowser profile |
| octobrowser_create_profileB | Create a new OctoBrowser profile |
| octobrowser_update_profileB | Update an existing OctoBrowser profile |
| octobrowser_delete_profilesB | Delete one or more OctoBrowser profiles |
| octobrowser_import_cookiesB | Import cookies into a profile |
| octobrowser_get_tagsA | Get list of all tags |
| octobrowser_create_tagB | Create a new tag |
| octobrowser_update_tagB | Update an existing tag |
| octobrowser_delete_tagB | Delete a tag |
| octobrowser_get_proxiesA | Get list of all proxies |
| octobrowser_create_proxyC | Create a new proxy |
| octobrowser_update_proxyB | Update an existing proxy |
| octobrowser_delete_proxyC | Delete a proxy |
| octobrowser_get_active_profilesA | Get list of currently active (running) profiles on local machine |
| octobrowser_start_profileC | Start a profile on local machine |
| octobrowser_stop_profileB | Stop a running profile on local machine |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 17 tools
Each tool targets a distinct resource and action: profiles, tags, proxies, and local lifecycle operations. Even similar tools like get_profiles and get_active_profiles are clearly separated by purpose, with descriptions that prevent misselection.
All tools follow the same 'octobrowser_' prefix followed by a verb_noun pattern (e.g., create_profile, update_tag, delete_proxy). The minor pluralization differences (get_profiles vs get_profile, delete_profiles vs create_profile) are conventional for list-vs-single operations and do not break consistency.
With 17 tools, the server is slightly above the ideal 3-15 range but still reasonably scoped for managing profiles, tags, proxies, and lifecycle actions. Each tool serves a clear purpose, and the count feels appropriate for the domain's complexity.
The tool set provides full CRUD coverage for profiles, tags, and proxies, plus additional lifecycle actions like start/stop profile and import cookies. There are no obvious dead ends or missing operations that would hinder an agent from completing typical tasks in this domain.