MCP server
by pangeacyber
Pangea integrates AI and cyber security tools for threat intelligence, data protection, and advanced security analysis w
Integrates with Pangea's cybersecurity APIs to provide threat intelligence, data protection, and security analysis capabilities. Includes reputation checking, data redaction, audit logging, and cryptographic key management.
Pangea is an official MCP server published by pangeacyber that provides AI assistants with tools and capabilities via the Model Context Protocol. Pangea integrates AI and cyber security tools for threat intelligence, data protection, and advanced security analysis w It is categorized under auth security.
You can install Pangea in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
Apache-2.0
Pangea is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Pangea reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Pangea benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Pangea has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Pangea against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Pangea into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend Pangea for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Pangea is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Pangea reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Pangea reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Pangea is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 73
A Model Context Protocol (MCP) server that provides integration with Pangea APIs.

The first API token may look like:

This section will go over how to set up a brand new Pangea account for this MCP server.
PANGEA_VAULT_TOKEN
environment variable.PANGEA_AUDIT_CONFIG_ID environment variable.PANGEA_VAULT_ITEM_ID environment variable.Edit the following configuration file (create it if it does not exist):
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonReplace (or merge) the file contents with the following:
{
"mcpServers": {
"pangea": {
"command": "npx",
"args": ["-y", "@pangeacyber/mcp-server"],
"env": {
"PANGEA_VAULT_TOKEN": "pts_00000000000000000000000000000000",
"PANGEA_VAULT_ITEM_ID": "pvi_00000000000000000000000000000000",
"PANGEA_AUDIT_CONFIG_ID": "pci_00000000000000000000000000000000"
}
}
}
}
PANGEA_VAULT_TOKEN value to the Pangea Vault API token.PANGEA_VAULT_ITEM_ID value to the Vault item ID that contains
the API token that will be used to call all other Pangea services.PANGEA_AUDIT_CONFIG_ID value to the Secure Audit Log
configuration ID.npx @pangeacyber/mcp-server --transport httpStream --port 8080
When running the server with the streamable HTTP transport, it is possible to
optionally add authentication to the server via Pangea AuthN. To enable this
feature, set the --authn flag and set the following environment variables:
PANGEA_AUTHN_ISSUER — Pangea AuthN issuer URL.PANGEA_AUTHN_CLIENT_ID — Pangea AuthN client ID.PANGEA_AUTHN_CLIENT_SECRET — Pangea AuthN client secret.http://localhost:8000/pangea/callback.
Note that for a production MCP server, this should use the remote address
of the server (e.g. https://mcp.example.org/pangea/callback) instead of a
localhost address.openid.PANGEA_AUTHN_CLIENT_ID and PANGEA_AUTHN_CLIENT_SECRET environment
variables respectively. The Hosted Login URL that is displayed on the
AuthN Overview page is the PANGEA_AUTHN_ISSUER environment variable.Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.