Device intelligence for AI agents: Fingerprint events, smart signals, and API key management.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
make build runs go generate (to download the OpenAPI spec and generate schema files under internal/schema/) and then builds the binary.
The server can be configured via CLI flags or environment variables:
| CLI Flag | Environment Variable | Default | Description |
|---|---|---|---|
--serverapikey | FINGERPRINT_SERVER_API_KEY | Fingerprint Server API key (private mode) | |
--serverapiurl | FINGERPRINT_SERVER_API_URL | api.fpjs.io | Custom Server API URL (omit to use default) |
--managementapikey | FINGERPRINT_MANAGEMENT_API_KEY | Fingerprint Management API key (private mode) | |
--managementapiurl | FINGERPRINT_MANAGEMENT_API_URL | management-api.fpjs.io | Custom Management API URL (omit to use default) |
--region | FINGERPRINT_REGION | us | API region: us, eu, or ap (private mode) |
--transport | MCP_TRANSPORT | stdio | Transport: stdio or streamable-http |
--port | MCP_PORT | 8080 | Port for HTTP/HTTPS server |
--tlscert | MCP_TLS_CERT | Path to TLS certificate file | |
--tlskey | MCP_TLS_KEY | Path to TLS private key file | |
--readonly | MCP_READ_ONLY | false | Only expose read tools (shorthand for --tools with read-only tools) |
--tools | MCP_TOOLS | Comma-separated list of tool names to register (overrides --readonly) | |
--publicmode | MCP_PUBLIC | false | Public mode: extract API keys from JWT bearer tokens |
--authtoken | MCP_AUTH_TOKEN | (auto-generated in private mode) | Bearer token required to access the server (private mode) |
--jwtpublickey | FINGERPRINT_PUBLIC_KEY | PEM-encoded ES256 public key for verifying Fingerprint-issued JWT tokens | |
--oauthresource | OAUTH_RESOURCE | URL of this server (for OAuth metadata) | |
--oauthauthorizationserver | OAUTH_AUTH_SERVER | URL of the OAuth authorization server | |
--jwksurl | JWKS_URL | JWKS URL for JWT token verification in public mode | |
--openaiappschallengetoken | OPENAI_APPS_CHALLENGE_TOKEN | Domain verification token served at /.well-known/openai-apps-challenge |
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).
Embedders can register a second hook (requestinspect.Inspector in the
requestinspect package) that receives HTTP request metadata โ method,
URL, original headers, and TCP peer address โ for every request to the
/mcp endpoint, useful for audit logging and traffic analysis. Register
it with WithRequestInspector(inspector) when constructing the server.
The OSS binary configures no inspector, so nothing is collected.
The full contract (timing, fail-open behavior, read-only fields, stdio)
is documented in requestinspect/requestinspect.go, the source of truth
for this hook. See requestinspect/example_test.go for a complete
embedder-side implementation skeleton (bounded queue, background
delivery, header redaction, graceful drain).
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.
The MCP endpoint will be available at http://localhost:8080/mcp.
Provide TLS certificate and key files to enable HTTPS:
By default, all tools are registered based on which API keys are configured. You can restrict which tools are exposed:
When --tools is set, it overrides --readonly.
The managed instance at https://mcp.fpjs.io/mcp runs in public mode and authenticates each user via OAuth2. Nothing to run or configure.
In Claude, add it from the connectors directory rather than as a custom connector: open Customize > Connectors, choose Browse connectors, and search for Fingerprint. The same catalog serves claude.ai, Desktop, mobile and Claude Code, so this only has to be done once per account.
Adding it as a custom connector still works, but you have to name it yourself, and some characters in that name break tool discovery while the connector still reports as connected.
In other clients, point them at the URL directly:
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/fingerprint)<a href="https://allmcps.com/mcp/fingerprint"><img src="https://allmcps.com/api/badge/fingerprint?style=directory" alt="Fingerprint on AllMCPs" /></a>