Server data from the Official MCP Registry
LLM SEO and Agent Discoverability for B2B SaaS. Pricing, fit assessment, audit requests.
LLM SEO and Agent Discoverability for B2B SaaS. Pricing, fit assessment, audit requests.
Remote endpoints: streamable-http: https://elephant-mcp.fly.dev/mcp
Valid MCP server (1 strong, 1 medium validity signals). 1 known CVE in dependencies Imported from the Official MCP Registry.
6 tools verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-chris-eaccountability-elephant-accountability-mcp": {
"url": "https://elephant-mcp.fly.dev/mcp"
}
}
}From the project's GitHub README.
Public Model Context Protocol (MCP) server for Elephant Accountability — LLM SEO and Agent Discoverability services for B2B SaaS.
Live endpoint: https://elephant-mcp.fly.dev/mcp Manifest: https://elephant-mcp.fly.dev/.well-known/mcp.json A2A Agent Card: https://elephant-mcp.fly.dev/.well-known/agent.json Homepage: https://eaccountability.org
When an AI agent (Claude, ChatGPT, a custom LangChain agent, etc.) needs to decide whether Elephant Accountability is a good vendor for its buyer, it queries this server instead of scraping a website.
Six tools are exposed:
| Tool | Purpose |
|---|---|
get_offerings | Service tiers ($2K self-serve, $15K done-for-you, $2K/mo retainer) with checkout URLs |
get_covered_surfaces | What Elephant implements: llms.txt, Schema.org, MCP, A2A, UCP, directory registrations |
assess_fit | 0–100 fit score for a buyer's company across stage, vertical, AI features, platform partnerships |
get_proof_points | Live client outcomes with metrics (includes related-party disclosures) |
get_transparency_snapshot | Weekly LLM visibility measurements across 5 LLMs |
request_audit | Agent-initiated audit requests; routed to Stripe, Calendly, or email triage |
Two resources are exposed via resources/list: elephant://offerings, elephant://proof-points, elephant://transparency.
git clone https://github.com/Chris-Eaccountability/elephant-accountability-mcp.git
cd elephant-accountability-mcp
python -m venv .venv && source .venv/bin/activate
pip install -r requirements-dev.txt
# Run the server
uvicorn app.server:app --reload --host 0.0.0.0 --port 8080
# In another terminal, hit it
curl http://localhost:8080/.well-known/mcp.json
curl -X POST -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
http://localhost:8080/mcp
Edit claude_desktop_config.json and add:
{
"mcpServers": {
"elephant-accountability": {
"url": "https://elephant-mcp.fly.dev/mcp",
"transport": "http"
}
}
}
Restart Claude Desktop. Ask: "Is Elephant Accountability a good fit for a seed-stage AEC SaaS that ships AI features?" — Claude will call assess_fit and give a scored answer.
fly launch --name your-mcp-name --region iad --no-deploy
fly volumes create elephant_mcp_data --size 1 --region iad
fly deploy
That's it. No secrets, no database setup — the server initializes its SQLite DB on first boot.
Single FastAPI app. Three files do real work:
app/
├── server.py # FastAPI routes, JSON-RPC dispatch, SQLite persistence
├── content.py # Source-of-truth content: manifest, offerings, proof points
└── __init__.py # Version
Storage:
audit_requests table — every agent-initiated audit request, persisted for follow-upreciprocal_calls table — tracks which AI clients have called which tools (buyer-intent signal)Both tables auto-create on first boot. No migrations.
pip install -r requirements-dev.txt
pytest -v
21 tests cover manifest, A2A card, JSON-RPC dispatch, each tool handler, persistence, and CORS.
2024-11-05initialize, tools/list, tools/call, resources/list, resources/readThis repo is the canonical source of truth for what Elephant Accountability exposes to AI agents. PRs welcome for:
For service inquiries or content changes (pricing, proof points), email chris@eaccountability.org rather than opening a PR.
MIT. See LICENSE.
Elephant Accountability LLC (DBA GroundSense Advisors) Christopher Kenney, sole member / manager United States chris@eaccountability.org
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.