{
"mcpServers": {
"limacharlie": {
"env": {
"LC_OID": "your-organization-id",
"MCP_MODE": "stdio",
"LOG_LEVEL": "info",
"LC_API_KEY": "your-api-key",
"MCP_PROFILE": "all"
},
"args": [],
"command": "/absolute/path/to/lc-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A high-performance Model Context Protocol (MCP) server for LimaCharlie, enabling AI assistants like Claude to interact with your security infrastructure through natural language.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 0 days ago. 2 stars.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Lc Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A high-performance Model Context Protocol (MCP) server for LimaCharlie, enabling AI assistants like Claude to interact with your security infrastructure through natural language.
This server bridges AI assistants and the LimaCharlie security platform through the Model Context Protocol. It allows Claude (and other MCP-compatible AI assistants) to:
LimaCharlie is a Security Infrastructure as a Service (SIaaS) platform providing EDR, XDR, SIEM capabilities through a unified API. This MCP server makes that API accessible to AI assistants.
# 1. Build the server
go build -o lc-mcp-server ./cmd/server
# 2. Set your credentials
export LC_OID="your-organization-id"
export LC_API_KEY="your-api-key"
# 3. Run the server
./lc-mcp-server
Claude Code can connect to this server locally using STDIO transport. This is the recommended method for development and personal use.
cd /path/to/lc-mcp-server
go build -o lc-mcp-server ./cmd/server
Edit your Claude Code MCP settings file (usually at ~/.config/claude-code/mcp.json):
{
"mcpServers": {
"limacharlie": {
"command": "/absolute/path/to/lc-mcp-server",
"args": [],
"env": {
"LC_OID": "your-organization-id",
"LC_API_KEY": "your-api-key",
"MCP_MODE": "stdio",
"MCP_PROFILE": "all",
"LOG_LEVEL": "info"
}
}
}
}
Restart Claude Code to load the MCP server. You can verify it's working by asking:
"Can you list my online sensors?"
Claude will use the list_sensors or get_online_sensors tool to query your LimaCharlie organization.
You can configure multiple MCP server instances with different profiles:
{
"mcpServers": {
"limacharlie-investigate": {
"command": "/path/to/lc-mcp-server",
"args": [],
"env": {
"LC_OID": "your-org-id",
"LC_API_KEY": "your-api-key",
"MCP_MODE": "stdio",
"MCP_PROFILE": "live_investigation",
"LOG_LEVEL": "warn"
}
},
"limacharlie-detect": {
"command": "/path/to/lc-mcp-server",
"args": [],
"env": {
"LC_OID": "your-org-id",
"LC_API_KEY": "your-api-key",
"MCP_MODE": "stdio",
"MCP_PROFILE": "detection_engineering",
"LOG_LEVEL": "warn"
}
}
}
}
The server organizes tools into profiles for different use cases:
| Profile | Tool