Fingerprint MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Fingerprint MCP ServerGet identification events for visitor abc123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fingerprint MCP Server
Features
Run locally or use managed instance at https://mcp.fpjs.io/mcp
Event tools: Retrieve and search identification events with full smart signal data
Management tools: Manage workspace environments and API keys
Onboarding prompt: Guided setup for integrating Fingerprint into a project
Supports both stdio and streamable-http transports
Optional HTTPS with TLS certificates
OAuth2 login supported
Public mode for multi-tenant deployments (API keys passed via JWT bearer token)
Tool filtering to control which tools are exposed
Configurable via environment variables or CLI flags
Docker support for easy deployment
Related MCP server: Fingerprint MCP Servers
Installation
From Source
go install github.com/fingerprintjs/fingerprint-mcp-server@latestBuild Locally
git clone https://github.com/fingerprintjs/fingerprint-mcp-server.git
cd fingerprint-mcp-server
make buildmake build runs go generate (to download the OpenAPI spec and generate schema files under internal/schema/) and then builds the binary.
Configuration
The server can be configured via CLI flags or environment variables:
CLI Flag | Environment Variable | Default | Description |
|
| Fingerprint Server API key (private mode) | |
|
| api.fpjs.io | Custom Server API URL (omit to use default) |
|
| Fingerprint Management API key (private mode) | |
|
| management-api.fpjs.io | Custom Management API URL (omit to use default) |
|
|
| API region: |
|
|
| Transport: |
|
|
| Port for HTTP/HTTPS server |
|
| Path to TLS certificate file | |
|
| Path to TLS private key file | |
|
|
| Only expose read tools (shorthand for |
|
| Comma-separated list of tool names to register (overrides | |
|
|
| Public mode: extract API keys from JWT bearer tokens |
|
| (auto-generated in private mode) | Bearer token required to access the server (private mode) |
|
| PEM-encoded ES256 public key for verifying Fingerprint-issued JWT tokens | |
|
| URL of this server (for OAuth metadata) | |
|
| URL of the OAuth authorization server | |
|
| JWKS URL for JWT token verification in public mode |
Telemetry
This binary ships with telemetry disabled. There is no built-in analytics backend and the default emitter is a no-op, so running the OSS binary sends nothing to anyone.
The server exposes a hook (analytics.Emitter in the analytics
package) that fires on each MCP method. Embedders who want product
analytics register their own emitter by importing this package as a
library and calling WithAnalytics(emitter) when constructing the
server. Fingerprint's hosted build (mcp.fpjs.io) does this with an
Amplitude emitter, but that implementation lives in the private managed
repo, not here.
If you build your own emitter, the event shape is in
analytics/analytics.go. The middleware fires one mcp_method_called
event per MCP method, gated on a non-empty subscription_id (so pre-auth
methods and the private-mode auth path stay silent regardless).
Usage
Private mode vs. Public mode
Private mode means the server runs with its API keys pre-configured (FINGERPRINT_SERVER_API_KEY and FINGERPRINT_MANAGEMENT_API_KEY). This mode is useful when you are running a local instance intended to be used within your organization: server automatically uses those specified in the config. In this mode, auth token (MCP_AUTH_TOKEN) is enforced to protect your instance of the MCP server from unauthenticated use.
Public mode is how https://mcp.fpjs.io/mcp is run. It is meant to be used in situations when a single instance can be used by different users from different organizations, each with their own API keys. In this mode, API keys are extracted from JWT access tokens that are issued by https://dashboard.fingerprint.com or by user following the OAuth2 flow.
Stdio Transport (Default)
export FINGERPRINT_SERVER_API_KEY=your-secret-api-key
./fingerprint-mcp-serverStreamable HTTP Transport
export FINGERPRINT_SERVER_API_KEY=your-secret-api-key
./fingerprint-mcp-server --transport=streamable-http --port=8080The MCP endpoint will be available at http://localhost:8080/mcp.
HTTPS
Provide TLS certificate and key files to enable HTTPS:
./fingerprint-mcp-server --transport=streamable-http \
--tls-cert=cert.pem --tls-key=key.pemTool Filtering
By default, all tools are registered based on which API keys are configured. You can restrict which tools are exposed:
# Only expose read-only tools
./fingerprint-mcp-server --read-only
# Expose a specific set of tools
./fingerprint-mcp-server --tools=get_event,search_events,list_environmentsWhen --tools is set, it overrides --read-only.
Docker
Build the Image
docker build -t fingerprint-mcp-server .Run with Stdio Transport
docker run -i --rm \
-e FINGERPRINT_SERVER_API_KEY=your-secret-api-key \
fingerprint-mcp-serverRun with Streamable HTTP Transport
docker run -d --rm \
-e FINGERPRINT_SERVER_API_KEY=your-secret-api-key \
-e MCP_TRANSPORT=streamable-http \
-p 8080:8080 \
fingerprint-mcp-serverMCP Client Configuration
Hosted endpoint (managed)
The quickest way to connect is the managed instance at https://mcp.fpjs.io/mcp, which runs in public mode and authenticates each user via OAuth2.
{
"mcpServers": {
"fingerprint": {
"type": "http",
"url": "https://mcp.fpjs.io/mcp"
}
}
}Self-hosted
Add to your Cursor/Claude Desktop/etc configuration file (e.g. claude_desktop_config.json):
Stdio Transport:
{
"mcpServers": {
"fingerprint": {
"command": "/path/to/fingerprint-mcp-server",
"env": {
"FINGERPRINT_SERVER_API_KEY": "your-secret-api-key"
}
}
}
}Streamable HTTP Transport:
{
"mcpServers": {
"fingerprint": {
"url": "https://url/mcp",
"headers": {
"Authorization": "Bearer <auth-token>"
}
}
}
}Docker with Stdio:
{
"mcpServers": {
"fingerprint": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "FINGERPRINT_SERVER_API_KEY=your-secret-api-key", "fingerprint-mcp-server"]
}
}
}Available Tools
Event tools require a Server API key. Management tools require a Management API key. get_current_time needs no key and is always available. Write tools (create/update/delete) are hidden when --read-only is set or excluded via --tools.
Tool | Description |
| Return the current date/time in UTC (and an optional IANA timezone) |
| Retrieve a specific identification event by ID |
| Search events with filters (visitor, IP, smart signals, time range) |
| List workspace environments with pagination |
| Get details of a specific API key |
| List API keys with optional type/status/environment filters |
| Create a new workspace environment |
| Update an existing workspace environment |
| Delete a workspace environment |
| Create a new API key (public/secret/proxy) |
| Update an existing API key |
| Delete an API key (irreversible) |
Available Resources
fingerprint://events/{event_id}— Returns full event data for a given event ID.fingerprint://schemas/event— JSON Schema describing the event output structure.fingerprint://schemas/environment— JSON Schema for environment objects.fingerprint://schemas/api-key— JSON Schema for API key objects.
Available Prompts
onboarding— A guided walkthrough for integrating Fingerprint into a project, covering JavaScript Agent installation, API key setup, and verification steps.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceFacilitates integration of PrivateGPT with MCP-compatible applications, enabling chat functionalities and secure management of knowledge sources and user access.Last updated
- Alicense-qualityDmaintenanceProvides MCP servers for AI assistants to interact with Fingerprint's Server API for visitor identification events and Management API for workspace configuration.Last updated1MIT
- Alicense-qualityDmaintenanceEnables access to Apollo's tools and services through a standardized MCP interface, compatible with MCP-compliant clients.Last updated1MIT
- Alicense-qualityCmaintenanceEnables AI agents to discover and execute tools via a secure MCP server with JWT authentication, RBAC, rate limiting, and audit logging.Last updated1MIT
Related MCP Connectors
A paid remote MCP for ZeroID, built to return verdicts, receipts, usage logs, and audit-ready JSON.
A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r
A paid remote MCP for Skybridge, built to return verdicts, receipts, usage logs, and audit-ready JSO
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fingerprintjs/fingerprint-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server