flashid-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FLASHID_API_KEY | Yes | Your FlashID API key (required for all tools except check_connection) | |
| FLASHID_API_PORT | No | Port of the FlashID Local API, if you changed it in Settings | 58931 |
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 | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_connectionA | Verify that the FlashID desktop client is reachable and that the Local API and API key are set up. Call this first when any other tool fails, to diagnose the setup. |
| list_profilesA | List browser profiles (environments) with pagination and search. Note: running state is not part of this list — use list_running_browsers for that. |
| get_profileA | Get the full configuration of a profile, including its fingerprint (browser_config), proxy and folder. cookie_data is omitted unless include_cookie is true (cookies can be very large). |
| create_profileA | Create a browser profile. Only |
| update_profileA | Partial update of a profile — send only the fields to change; omitted fields keep their current value (fingerprint, proxy, name, everything). For just name / note / folder / proxy prefer quick_update_profile. |
| quick_update_profileA | Lightweight partial update of non-fingerprint info: name, note, folder and/or proxy. Send only the fields to change. folder_uuid "0" moves the profile out of its folder (root). |
| delete_profileA | Move a profile to Trash. Recoverable with restore_from_trash. |
| star_profileA | Toggle the star (favorite) flag of a profile. Returns the new stars_status (1 = starred). |
| get_fingerprint_optionsA | List the selectable values for a fingerprint field (for manual fingerprint configuration). For type=webgl both |
| generate_random_fingerprintA | Generate a coherent set of random fingerprint values for an OS. Rarely needed — create_profile auto-generates omitted fingerprint fields already. Useful to preview values or fill |
| open_browserA | Launch the browser for a profile and wait until it is ready. Returns automation endpoints: ws.puppeteer (CDP WebSocket — connect Playwright/Puppeteer or a browser-automation MCP to drive pages), ws.selenium (host:port) and debug_port. Usually takes a few seconds; the first launch can take minutes while the browser kernel downloads. |
| close_browserA | Close one or more running browsers by profile UUID. |
| list_running_browsersA | List currently running browsers with their automation endpoints (ws.puppeteer / ws.selenium / debug_port). |
| list_proxiesA | List saved proxies. Use the returned proxy_uuid to bind a proxy to a profile (create_profile / quick_update_profile with proxy.mode=static). |
| add_proxiesA | Save one or more proxies (max 500 per call). Only proxy_type / proxy_host / proxy_port are required. Duplicates already in the account are detected and skipped. |
| update_proxyA | Partial update of a saved proxy — send only the fields to change. |
| delete_proxyA | Delete a saved proxy. This cannot be undone. |
| check_proxyA | Test connectivity of a proxy (saved or not) and return its detected exit IP and geo info. May take up to a minute for slow proxies. |
| list_proxy_regionsA | Regions for rotating (dynamic residential) proxies. Without arguments returns countries (name + code); pass |
| list_foldersC | List profile folders. |
| create_folderC | Create a profile folder. |
| update_folderB | Rename a folder. |
| delete_folderC | Delete a folder. |
| list_trashA | List profiles currently in the trash (recycle bin). |
| restore_from_trashA | Restore profiles from trash — specific ones via profile_uuids, or everything via all=true. |
| permanently_deleteA | PERMANENTLY delete profiles from trash — specific ones via profile_uuids, or empty the whole trash via all=true. This cannot be undone. Only affects profiles already in trash. |
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 26 tools
Most tools target distinct resources/actions, but update_profile and quick_update_profile overlap somewhat, as do delete_profile and permanently_delete. Descriptions clarify the differences, but an agent might occasionally confuse them.
All tools use snake_case with a consistent verb_noun pattern (e.g., list_profiles, create_profile, delete_proxy). Even multi-word actions like quick_update_profile and list_running_browsers follow the same convention.
With 26 tools, the count exceeds the 25-tool threshold for 'too many' per the rubric. While the breadth covers profiles, proxies, folders, and browsers, the sheer number may feel heavy for an agent to navigate.
The tool surface provides full lifecycle coverage for profiles (create, read, update, delete, restore, permanent delete, star), proxies (CRUD plus testing and regions), folders, and browser management (open/close/list). No obvious gaps or dead ends.