Official Fingerprint MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fingerprint": {
"env": {
"FINGERPRINT_SERVER_API_KEY": "your-secret-api-key"
},
"command": "/path/to/fingerprint-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
onboardingGuided setup for integrating Fingerprint into a project
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.
MCP Security Weekly
Get CVE alerts and security updates for Fingerprint Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
go install github.com/fingerprintjs/fingerprint-mcp-server@latest
git clone https://github.com/fingerprintjs/fingerprint-mcp-server.git
cd fingerprint-mcp-server
make build
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 |
|---|---|---|---|
--server-api-key | FINGERPRINT_SERVER_API_KEY | Fingerprint Server API key (private mode) | |
--server-api-url | FINGERPRINT_SERVER_API_URL | api.fpjs.io | Custom Server API URL (omit to use default) |
--management-api-key | FINGERPRINT_MANAGEMENT_API_KEY | Fingerprint Management API key (private mode) | |
--management-api-url | 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 |
--tls-cert | MCP_TLS_CERT | Path to TLS certificate file | |
--tls-key | MCP_TLS_KEY | Path to TLS private key file | |
--read-only | 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 --read-only) | |
--public | MCP_PUBLIC | false |