Device intelligence for AI agents: Fingerprint events, smart signals, and API key management.
If you already use Fingerprint, the fingerprint mcp server is the piece that lets your assistant work with it directly. Device intelligence for AI agents: Fingerprint events, smart signals, and API key management.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
get_current_time — Return the current date/time in UTC (and an optional IANA timezone)get_event — Retrieve a specific identification event by IDsearch_events — Search events with filters (visitor, IP, smart signals, time range)list_environments — List workspace environments with paginationget_api_key — Get details of a specific API keylist_api_keys — List API keys with optional type/status/environment filterscreate_environment — Create a new workspace environmentupdate_environment — Update an existing workspace environmentdelete_environment — Delete a workspace environmentcreate_api_key — Create a new API key (public/secret/proxy)update_api_key — Update an existing API keydelete_api_key — Delete an API key (irreversible)Configuration is passed through the environment: FINGERPRINT_SERVER_API_KEY, FINGERPRINT_SERVER_API_URL, FINGERPRINT_MANAGEMENT_API_KEY, FINGERPRINT_MANAGEMENT_API_URL, FINGERPRINT_REGION, MCP_TLS_KEY, MCP_AUTH_TOKEN, FINGERPRINT_PUBLIC_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Fingerprint's toolset — get_current_time, get_event, search_events and 9 more — is a fair guide to whether it matches your workflow. It is maintained by fingerprintjs; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_current_time | Return the current date/time in UTC (and an optional IANA timezone) |
| get_event | Retrieve a specific identification event by ID |
| search_events | Search events with filters (visitor, IP, smart signals, time range) |
| list_environments | List workspace environments with pagination |
| get_api_key | Get details of a specific API key |
| list_api_keys | List API keys with optional type/status/environment filters |
| create_environment | Create a new workspace environment |
| update_environment | Update an existing workspace environment |
| delete_environment | Delete a workspace environment |
| create_api_key | Create a new API key (public/secret/proxy) |
| update_api_key | Update an existing API key |
| delete_api_key | Delete an API key (irreversible) |
**Streamable HTTP Transport:**
```json
{
"mcpServers": {
"fingerprint": {
"url": "https://url/mcp",
"headers": {
"Authorization": "Bearer <auth-token>"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| FINGERPRINT_SERVER_API_KEY | Credential the server authenticates with. | Yes |
| FINGERPRINT_SERVER_API_URL | Endpoint or connection string the server talks to. | Yes |
| FINGERPRINT_MANAGEMENT_API_KEY | Credential the server authenticates with. | Yes |
| FINGERPRINT_MANAGEMENT_API_URL | Endpoint or connection string the server talks to. | Yes |
| FINGERPRINT_REGION | Configuration value read at startup. | Optional |
| MCP_TLS_KEY | Credential the server authenticates with. | Yes |
| MCP_AUTH_TOKEN | Credential the server authenticates with. | Yes |
| FINGERPRINT_PUBLIC_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.