Skip to main content
Glama

CrowdStrike Falcon MCP Server

Official
by CrowdStrike
sse_usage.py753 B
#!/usr/bin/env python3 """ SSE transport example for Falcon MCP Server. This script demonstrates how to initialize and run the Falcon MCP server with SSE transport. """ import os from dotenv import load_dotenv from falcon_mcp.server import FalconMCPServer def main(): """Run the Falcon MCP server with SSE transport.""" # Load environment variables from .env file load_dotenv() # Create and run the server with SSE transport server = FalconMCPServer( # You can override the base URL if needed # base_url="https://api.us-2.crowdstrike.com", debug=os.environ.get("DEBUG", "").lower() == "true", ) # Run the server with SSE transport server.run("sse") if __name__ == "__main__": main()

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/CrowdStrike/falcon-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server