Connect your AI
in 3 seconds
One URL. Zero config. 164+ skills, 167 design systems, and 33 categories for Bangladeshi context — ready for any MCP-capable client.
Try it without any config
Type a question below — the page calls the MCP endpoint directly from your browser.
Paste this prompt into any AI chat (opencode, Cursor, Claude) to auto-add this MCP server:
Add this MCP server to my project:
- name: bd-hub
- url: https://mcp.mangomindbd.com/mcp
Tools: list_skills, search_skills, load_skill,
recommend_skills, list_categories, get_orientation,
list_craft_docs, load_craft_doc, list_design_systems,
load_design_system
Run get_orientation first.
How it works
Three steps to connect any AI client to the MCP hub.
Pick your client
opencode, Cursor, Continue, Claude Desktop, or any MCP-capable tool.
Copy the config
One JSON snippet — no plugins, no SDKs, no API keys to generate.
Ask the AI
Your AI discovers 10 tools automatically. Start with get_orientation.
Connect your AI
Select your client below and copy the config snippet.
opencode
Save as .opencode.json in your project root{
"mcpServers": {
"bd-hub": {
"type": "url",
"url": "https://mcp.mangomindbd.com/mcp"
}
}
}Cursor
Save as .cursor/mcp.json or use Cursor Settings > MCP{
"mcpServers": {
"bd-hub": {
"type": "sse",
"url": "https://mcp.mangomindbd.com/mcp"
}
}
}Windsurf
Save as .windsurf/mcp_config.json{
"mcpServers": {
"bd-hub": {
"type": "sse",
"url": "https://mcp.mangomindbd.com/mcp"
}
}
}Continue
Add to config.json in Continue (VS Code / JetBrains){
"mcpServers": {
"bd-hub": {
"type": "sse",
"url": "https://mcp.mangomindbd.com/mcp"
}
}
}Claude Desktop
Add to claude_desktop_config.json{
"mcpServers": {
"bd-hub": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/client", "https://mcp.mangomindbd.com/mcp"]
}
}
}cURL — no client needed
Test the MCP endpoint from any terminalcurl -s https://mcp.mangomindbd.com/mcp -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'Returns all 10 tool names, descriptions, and input schemas as JSON.
Quick commands
One-liners for the terminal — no config file needed.
echo '{"mcpServers":{"bd-hub":{"type":"url","url":"https://mcp.mangomindbd.com/mcp"}}}' > .opencode.json
curl -s https://mcp.mangomindbd.com/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
curl -s https://mcp.mangomindbd.com/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_skills","arguments":{"query":"bkash payment"}}}'
curl https://mcp.mangomindbd.com/health
All 10 tools
Auto-discovered by any MCP client. No registration, no plugin install.