Model Context Protocol (MCP) server that provides AI agents with searchable access to any markdown content through resources and an embedded full-text search tools.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-acdc-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Agent Content Discovery Companion (ACDC) MCP Server
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / writing
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Mcp Acdc Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Agent Content Discovery Companion (ACDC) MCP Server
A high-performance Model Context Protocol (MCP) server for AI agents to discover and search local content. Features full-text search powered by Bleve, dual transport support (stdio/SSE), and flexible authentication.
ACDC solves the challenge of managing team-specific knowledge in the AI agent space. While general-purpose LLMs are powerful, they lack the context of your team's specific tools, patterns, and standards.
ACDC provides a bridge between your content repositories and AI agents, making it easy to manage and develop relevant context at scale.
Docker (Quick Start):
cd examples/docker-local-content
docker-compose up -d
Homebrew:
brew install sha1n/tap/acdc-mcp
acdc-mcp --content-dir ./content
stdio for local agents, sse for remote/Dockerdocker pull sha1n/mcp-acdc-server:latest
brew install sha1n/tap/acdc-mcp
See Development Guide for build instructions.
acdc-mcp --content-dir ./content
acdc-mcp --transport sse --content-dir ./content
docker run -p 8080:8080 \
-v $(pwd)/content:/app/content \
sha1n/mcp-acdc-server:latest
The SSE server exposes an unauthenticated /health endpoint that returns 200 OK. This can be used as a liveness or readiness probe in Kubernetes:
livenessProbe:
httpGet:
path: /health
port: 8080
readinessProbe:
httpGet:
path: /health
port: 8080
| Flag | Short | Environment Variable | Default |
|---|---|---|---|
--content-dir | -c | ACDC_MCP_CONTENT_DIR | ./content |
--transport | -t | ACDC_MCP_TRANSPORT | stdio |
--port | -p | ACDC_MCP_PORT | 8080 |
--uri-scheme | -s | ACDC_MCP_URI_SCHEME | acdc |
--cross-ref | — | ACDC_MCP_CROSS_REF | `fal |