SIEMen

SIEMen

Enables AI agents to read, write, and search security findings, engagement memory, and semantic triage via MCP tools on Cloudflare Workers.

Category
访问服务器

README

SIEMen

Security-focused AI data layer on Cloudflare Workers. Purpose-built for AI security agents — combines fast KV scratch cache, semantic vector search over findings, per-engagement agent memory, and a similarity-based LLM triage cache. Exposes both a REST API and a built-in MCP server so Claude/AI agents can read, write, and search security data directly.

Stack

Layer Technology Details
Runtime Cloudflare Workers Edge-native, globally distributed, zero cold starts
Framework Hono v4 + TypeScript Lightweight routing, CORS, middleware
Database Cloudflare D1 (SQLite) Engagements, findings, memory, semantic cache log
Vector Search Cloudflare Vectorize 768-dim BGE embeddings, cosine similarity, namespace-isolated per engagement
KV Cache Workers KV Fast scratch store + semantic cache values
Embeddings Workers AI (BGE-768) Primary — OpenRouter fallback on failure
Rate Limiting Workers Rate Limiting API 60 req/min per caller (cross-isolate, durable)
Auth Web Crypto SHA-256 Timing-safe Bearer token verification
MCP JSON-RPC 2.0 9 tools on POST /mcp — same handlers as REST

What It Does

Fast KV Scratch Cache

Per-engagement key/value store for in-flight agent notes, intermediate results, and shared state across agent steps. Namespaced to prevent cross-engagement leakage. Optional TTL (max 24h).

Semantic Vector Search

Embed and store security findings, CVEs, and controls with finding_store. Retrieve the closest matches by semantic similarity with finding_search. Namespace-scoped to engagement — an agent searching for "SQL injection" can only surface findings from its own engagement.

Per-Engagement Agent Memory

Agents store notes with engagement_remember and recall them by recency or vector similarity with engagement_recall. Supports sub-scoping by session_id for multi-step workflows.

Semantic LLM Triage Cache

semantic_triage routes security prompts through a two-level cache before hitting an LLM:

  1. Exact-hash short-circuit — identical prompts reuse prior analysis instantly
  2. Cosine similarity check — prompts above the configured threshold (default 0.92) return a cached response without an LLM call
  3. Miss — calls the configured LLM gateway, writes result to KV + Vectorize for future hits

Cuts LLM spend significantly when agents analyze structurally similar findings across engagements.

MCP Tools

Tool Description
engagement_open Create or register a new pentest engagement
sec_cache_get Read from the fast KV scratch store
sec_cache_set Write to the fast KV scratch store (optional TTL)
finding_store Embed and store a finding, CVE, or control
finding_search Semantic RAG over findings scoped to an engagement
engagement_remember Store agent memory for an engagement
engagement_recall Recall memories by recency or vector similarity
semantic_triage Semantic-cache-backed LLM triage
cache_stats Get cache hit/miss stats for an engagement

REST Routes

All /v1/* routes require Authorization: Bearer <SIEMEN_API_KEY>.

Method Path Description
GET /health Health check (unauthenticated)
POST /v1/engagements Create/upsert an engagement
POST /v1/findings Embed + store a finding/CVE/control
POST /v1/findings/search Semantic search over findings
GET /v1/stats?engagement_id= Cache hit/miss stats
GET /v1/kv/:ns/:key KV scratch read
PUT /v1/kv/:ns/:key KV scratch write
POST /v1/memory Store agent memory
GET /v1/memory?engagement_id= Recall agent memories
POST /v1/triage Semantic triage with LLM cache
POST /mcp MCP JSON-RPC endpoint (all 9 tools)

D1 Schema

Apply migrations in order with wrangler d1 execute siemen-db --remote --file migrations/<file>.sql:

  • engagements — engagement registry (id, name, client, status, timestamps)
  • memory — agent memory per engagement (content, tags, vector_id, session_id)
  • findings — security findings/CVEs/controls (kind, title, body, severity, asset, external_id, vector_id)
  • semantic_cache_log — cache outcome log (prompt_hash, outcome, similarity, model, tokens, created_at)

Deploy

# 1. Create infrastructure
wrangler vectorize create siemen-vectors --dimensions=768 --metric=cosine
wrangler d1 create siemen-db
wrangler kv namespace create siemen-sc-cache
wrangler kv namespace create siemen-kv

# 2. Update wrangler.toml with the returned IDs

# 3. Apply D1 migrations (run in order)
wrangler d1 execute siemen-db --remote --file migrations/migration-001-engagements.sql
wrangler d1 execute siemen-db --remote --file migrations/migration-002-memory.sql
wrangler d1 execute siemen-db --remote --file migrations/migration-003-findings.sql
wrangler d1 execute siemen-db --remote --file migrations/migration-004-semantic-cache-log.sql

# 4. Set secrets
wrangler secret put SIEMEN_API_KEY
wrangler secret put OPENROUTER_API_KEY
wrangler secret put LLM_GATEWAY_KEY

# 5. Deploy
npm run deploy

MCP Configuration

Add to your Claude Desktop / Claude Code MCP config:

{
  "mcpServers": {
    "siemen": {
      "url": "https://your-worker.workers.dev/mcp",
      "headers": {
        "Authorization": "Bearer ${SIEMEN_API_KEY}"
      },
      "alwaysAllow": [
        "engagement_open",
        "sec_cache_get",
        "finding_search",
        "engagement_recall",
        "cache_stats"
      ]
    }
  }
}

Set SIEMEN_API_KEY in your shell environment. Write tools (finding_store, sec_cache_set, engagement_remember, semantic_triage) require explicit approval by default.

Security

  • All /v1/* and /mcp routes require a Bearer token verified with Web Crypto SHA-256 (no Node.js crypto — edge-compatible)
  • Findings are namespace-scoped to engagement_id in Vectorize — cross-engagement leakage is impossible at the query layer
  • Secrets via wrangler secret put only — never in source or wrangler.toml
  • Rate limited at 60 req/min per token identity (not per IP)

See SECURITY.md for vulnerability reporting.

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选