Skip to main content
Glama
Aashish079

Logpoint MCP Server

by Aashish079

Logpoint MCP Server

Logpoint Logo

This repository implements production-ready MCP server endpoints for Logpoint SIEM with support for n8n and Claude integrations.

Features

  • POST /getalloweddata for allowed configuration data

  • POST /getsearchlogs to start and fetch search results

  • Incident API endpoints for retrieving, updating, and closing incidents

  • Alert Rule API endpoints with JWT bearer authentication

  • Repo and user-defined list endpoints

  • HTTP and email notification settings endpoints

  • n8n webhook integration endpoint

  • Claude incident summary integration endpoint

Related MCP server: wazuh-mcp

Run locally

  1. Create a Python environment:

    python3 -m venv .venv
    source .venv/bin/activate
    pip install -r requirements.txt
  2. Copy env example and customize production settings:

    cp .env.example .env
  3. Configure your .env values before starting the server.

  4. Start the server:

    uvicorn app.main:app --host 0.0.0.0 --port 8000 --log-level info
  5. Example credentials:

    • username: John

    • secret_key: a1b2c3d4e5f6g7h8i9j0k1

Production and Integration Ready

  • Environment-driven configuration via .env

  • CORS enabled for allowed origins

  • /health status endpoint

  • /integration/n8n/alert for n8n webhooks

  • /integration/claude/incident-summary for Claude prompt-ready incident summaries

Environment variables

The server loads configuration from .env or environment variables using Pydantic.

JWT_SECRET=a1b2c3d4e5f6g7h8i9j0k1
JWT_ALGORITHM=HS256
ALLOWED_ORIGINS=["*"]
ENVIRONMENT=production
ALLOWED_USERS=John:a1b2c3d4e5f6g7h8i9j0k1

Integration examples

n8n webhook payload example:

curl -X POST http://localhost:8000/integration/n8n/alert \
  -H "Content-Type: application/json" \
  -d '{"alert_id":"abc123","severity":"high"}'

Claude incident summary example:

curl -X POST http://localhost:8000/integration/claude/incident-summary \
  -H "Content-Type: application/json" \
  -d '{"incident_id":"abc123","name":"Suspicious login","risk_level":"high","status":"unresolved","assigned_to":"admin"}'

JWT Token Generator

python token_generator.py --sub admin --scope "user:read alertrules:write logsources:read alertrules:read search:read search:write" --secret a1b2c3d4e5f6g7h8i9j0k1
F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    An MCP server for the Wazuh SIEM/XDR platform that enables users to query agents, security alerts, detection rules, and decoders through Claude or other MCP clients. It provides specialized tools and prompts for investigating security alerts, performing agent health checks, and generating environmental security overviews.
    Last updated
    28
    16
    3
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A security-focused MCP server that enables automated log retrieval and threat analysis using LangGraph orchestration and RAG. It allows users to detect suspicious activity and generate structured security insights by integrating LLM reasoning with log data and runbook documentation.
    Last updated

View all related MCP servers

Related MCP Connectors

  • Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.

  • MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.

  • Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.

View all MCP Connectors

Latest Blog Posts

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/Aashish079/MCPServer-Logpoint'

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