Official MCP server for Brilliant Directories — manage members, posts, leads, reviews, and more.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-brilliantdirectories-brilliant-directories-mcp": {
"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.
Official MCP server for Brilliant Directories — manage members, posts, leads, reviews, and more.
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.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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 other
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Hash-verified file editing MCP server with token efficiency hook. 11 tools for AI coding agents.
MCP Security Weekly
Get CVE alerts and security updates for io.github.brilliantdirectories/brilliant-directories-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Give any AI agent full access to your Brilliant Directories site with one API key.
Manage members, posts (single-image and multi-image), leads, reviews, top and sub categories, email templates, pages (homepage, landing pages), 301 redirects, smart lists, widgets, menus, forms, tags, membership plans, and more — across every resource BD exposes via its REST API.
One command. Answer two questions. Done.
npx brilliant-directories-mcp --setup
The wizard asks for your BD site URL and API key, tests the connection, asks which app you use (Cursor / Claude Desktop / Windsurf / Claude Code), and writes the config for you. No JSON editing.
Restart your app, then ask your AI:
"List members on my BD site"
Get your API key from BD Admin > Developer Hub > Generate API Key.
If an AI agent is guiding you, it can have you paste a single command with everything prefilled:
npx brilliant-directories-mcp --setup --url https://your-site.com --api-key YOUR_KEY --client cursor
This runs the full setup end-to-end with no prompts. Replace cursor with claude-desktop, windsurf, claude-code, or print (prints the JSON config instead of writing a file).
Option A — npx (recommended, no install needed):
claude mcp add bd-api -- npx brilliant-directories-mcp --api-key YOUR_KEY --url https://your-site.com
Option B — Global install:
npm install -g brilliant-directories-mcp
claude mcp add bd-api -- brilliant-directories-mcp --api-key YOUR_KEY --url https://your-site.com
Cursor / Windsurf / Cline — add to your MCP config file (~/.cursor/mcp.json, etc.):
{
"mcpServers": {
"bd-api": {
"command": "npx",
"args": ["-y", "brilliant-directories-mcp", "--api-key", "YOUR_KEY", "--url", "https://your-site.com"]
}
}
}
Then ask your AI: "List all members on my BD site" or "Create a new member with email john@example.com"
https://raw.githubusercontent.com/brilliantdirectories/brilliant-directories-mcp/main/openapi/bd-api.json
bd_site_url, enter your BD site (e.g., https://mysite.com)X-Api-Key, paste your keyOption A — Import OpenAPI spec (recommended):
Import the spec URL as a custom API definition:
https://raw.githubusercontent.com/brilliantdirectories/brilliant-directories-mcp/main/openapi/bd-api.json
n8n will prompt for your BD site URL and API key on import. No file editing required.
Option B — Plain HTTP Request node:
GEThttps://your-site.com/api/v2/user/getX-Api-Key: YOUR_KEYMake: Create a custom app using the OpenAPI spec, or use HTTP module with X-Api-Key header.
Zapier: If you already have the BD Zapier app, it uses the same underlying API. For new endpoints, use Webhooks by Zapier with the X-Api-Key header.
# Verify your API key
curl -H "X-Api-Key: YOUR_KEY" https://your-site.com/api/v2/token/verify
# List members
curl -H "X-Api-Key: YOUR_KEY" https://your-site.com/api/v2/user/get?li
... [View full README on GitHub](https://github.com/brilliantdirectories/brilliant-directories-mcp#readme)