Connect real-time cybersecurity threat intelligence to your AI workflows through standardized tools and resources. Access comprehensive IOCs, CVEs, TTPs, and threat actor data from FalconFeeds.io with seamless integration across Claude Desktop, VS Code, and other MCP-enabled applications.
概览
Features
- CVE Intelligence: Search and retrieve Common Vulnerabilities and Exposures data with detailed analysis
- Threat Feeds: Access real-time threat intelligence feeds from global sources
- Threat Actors: Get detailed profiles of threat actors and cybercriminal groups
- Threat Images: Retrieve screenshots and visual evidence from threat feeds
- IOC Management: Handle Indicators of Compromise with enrichment capabilities
- MCP Prompts: Pre-built cybersecurity prompts optimized for threat analysis workflows
Installation Options
NPX Installation (Recommended)
Add the server to your MCP client configuration:
{
"mcpServers": {
"falconfeeds": {
"command": "npx",
"args": [
"-y",
"@falconfeeds/mcp@latest"
],
"env": {
"FALCONFEEDS_API_KEY": "your_api_key_here",
"FALCONFEEDS_TIMEOUT": "30000"
}
}
}
}
Local Development
Clone and build the repository for development or customization:
git clone https://github.com/Technisanct/falconfeeds-mcp.git
cd falconfeeds-mcp
Install dependencies
npm install
Build the project
npm run build
Configure your MCP client:
{
"mcpServers": {
"falconfeeds": {
"command": "node",
"args": [
"/path/to/falconfeeds-mcp/dist/index.js"
],
"env": {
"FALCONFEEDS_API_KEY": "your_api_key_here"
}
}
}
}
Getting Your API Key
- Visit FalconFeeds Dashboard
- Sign up or log in to your account
- Navigate to Settings
- Navigate to API Access
- Generate your API key
- Copy the key to your environment configuration
NOTE
Make sure you have a valid plan and sufficient API credits
服务器配置
{
"mcpServers": {
"falconfeeds": {
"command": "npx",
"args": [
"-y",
"@falconfeeds/mcp@latest"
],
"env": {
"FALCONFEEDS_API_KEY": "your_api_key_here",
"FALCONFEEDS_TIMEOUT": "30000"
}
}
}
}