{
"mcpServers": {
"blackbird-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Blackbird MCP Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 310 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
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.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Blackbird Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Before you begin, ensure you have:
BLACKBIRD_USERNAME and BLACKBIRD_PASSWORDBLACKBIRD_CLIENT_KEY and BLACKBIRD_SECRET_KEYuv --versionbrew install gitsudo apt install gitsudo yum install gitgit clone https://github.com/blackbirdai-team/blackbird-mcp-server.git
cd blackbird-mcp-server
claude_desktop_config.json# Create the config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Opens the config file in TextEdit
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Alternative method using Visual Studio Code (requires VS Code to be installed)
code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
code %APPDATA%\Claude\claude_desktop_config.json
Replace <PATH-TO-REPO> with the path where you cloned the repository.
Replace the *** with your actual Blackbird credentials. Note: you only need BLACKBIRD_CLIENT_KEY and BLACKBIRD_SECRET_KEY, or BLACKBIRD_USERNAME and BLACKBIRD_PASSWORD.
{
"mcpServers": {
"blackbird-mcp-server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"backoff",
"mcp",
"run",
"<PATH-TO-REPO>/blackbird-mcp-server/server.py"
],
"env": {
"BLACKBIRD_CLIENT_KEY": "***",
"BLACKBIRD_SECRET_KEY": "***",
"BLACKBIRD_USERNAME": "***",
"BLACKBIRD_PASSWORD": "***"
}
}
}
}
Note: Requires Cursor version 0.45.6 or higher
To set up the Blckbird MCP server in Cursor:
mcp.json the same way as you would for Claude Desktop{
"mcpServers": {
"blackbird-mcp-server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"backoff",
"mcp",
"run",
"<PATH-TO-REPO>/blackbird-mcp-server/server.py"
],
"env": {
"BLACKBIRD_CLIENT_KEY": "***",
"BLACKBIRD_SECRET_KEY": "***",
"BLACKBIRD_USERNAME": "***",
"BLACKBIRD_PASSWORD": "***"
}
}
}
}