sentrul-mcp-server
Enables access to Sentrul's research, compliance scanning, and trace lookup agents through MCP clients. Provides 257 production agents for analyzing web content, detecting compliance patterns, and retrieving structured trace data.
README
sentrul-mcp-server
Run Sentrul research, compliance, and trace-lookup agents from any MCP-aware client. 257 production agents behind one gateway.
Version: 0.1.0 | SDK: @modelcontextprotocol/sdk@1.29.0 | License: MIT
Install (Claude Desktop)
Add this snippet to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sentrul": {
"command": "npx",
"args": ["-y", "sentrul-mcp-server"],
"env": { "SENTRUL_API_KEY": "optional — free tier auto-provisions" }
}
}
}
Restart Claude Desktop. The server auto-provisions a free-tier key on first use — no signup required.
Tools
sentrul_research
Fetch a URL and run Sentrul's research-agent on the content. Returns summary, entities, claims, and a public Langfuse trace URL.
Example prompts
- "Research https://example.com/report and summarise the key claims"
- "Do a full-depth research pass on https://arxiv.org/abs/2401.00001"
sentrul_compliance_scan
Scan text for common compliance patterns (PII, PCI, HIPAA, GDPR data). Returns findings + severity. Not legal advice.
Example prompts
- "Scan this document for PII and PCI violations: [paste text]"
- "Check the following privacy policy for GDPR data patterns"
sentrul_trace_lookup
Retrieve a public Langfuse trace by ID. Returns the structured trace payload for inspection.
Example prompts
- "Fetch trace clm8abc123xyz from Sentrul"
- "Show me the observation tree for trace ID abc-def-456"
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
SENTRUL_API_KEY |
No | auto-provisioned | Your Sentrul API key. Leave unset to use the free tier. |
SENTRUL_API_BASE |
No | https://app.sentrul.com/api |
Override the Sentrul gateway base URL (staging / local dev). |
Anonymous free tier
If SENTRUL_API_KEY is not set, the server:
- Checks for a cached key at
~/.sentrul/mcp-key. - If no cache exists, calls
POST /v1/mcp/keys/anonymousto auto-provision a rate-limited free key. - Writes the key to
~/.sentrul/mcp-key(mode 0600) for future runs.
You can upgrade at any time by setting SENTRUL_API_KEY in your MCP client config.
Security notes
- No shell execution — the server never runs shell commands or spawns subprocesses.
- No PII logging — environment variables and API keys are never written to logs or stdout.
- Read-only — all three tools are read-only at launch; no writes to user files or external state.
- Filesystem writes — the only writes are to
~/.sentrul/mcp-key(the key cache). Nothing else is written outside that directory. - Supply-chain — publish uses 2FA-enforced npm account + sigstore attestation (see
SECURITY.mdwhen available).
Development
pnpm install
pnpm run build # tsc → dist/
pnpm test # vitest run
# Smoke test — should print 3 tools in the tools/list response:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node dist/index.js
Links
- Homepage: https://sentrul.com
- Repository: https://github.com/sentrul/sentrul-mcp-server
- Issues: https://github.com/sentrul/sentrul-mcp-server/issues
MIT License — Copyright (c) 2026 Sentrul
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.