MCP Bridge
The MCP-Open Floor Bridge Server is an MCP server that provides 6 tools for discovering and communicating with Open Floor Protocol-compliant agents. It enables users to find agents by capabilities, send messages to specific agents, or let the floor manager automatically select the best agent for a task. The server requires configuration with agent URLs via the "x-openfloor-agents" header to connect to available OFP agents.
The URL of the MCP server is mcp.openfloor.dev
Available MCP Tools
- discover_openfloor_agents: Discover and list all available agents
- send_message_to_openfloor_agent: Send message to specific agent
- send_to_best_openfloor_agent: Let floor manager choose best agent
- execute_agent_capability: Find agent by capability keywords
- list_all_agent_capabilities: List all agent capabilities
- send_task_to_agents_with_keywords: Send task to all matching agents
Usage Examples
- Start with something like "Tell me what Open Floor agents are available."
- Fact Check with Verity "Check with Verity: is the Eiffeltower in Berlin?"
- Use the Parrot Agent "Repeat Hello World!"
Setup Examples
Claude Desktop
Important: Claude does not allow spaces in the header argument, so x-openfloor-agents: https://... would be invalid.
{
"mcpServers": {
"openfloor-bridge": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfloor.dev/",
"--transport",
"http-only",
"--header",
"x-openfloor-agents:http://beaconforge.pythonanywhere.com,https://secondassistant.pythonanywhere.com/verity,https://kmhhywpw32.us-east-1.awsapprunner.com/"
]
}
}
}
Cursor IDE
{
"mcpServers": {
"openfloor-bridge": {
"transport": "http",
"url": "https://mcp.openfloor.dev/",
"headers": {
"x-openfloor-agents": "http://beaconforge.pythonanywhere.com,https://secondassistant.pythonanywhere.com/verity,https://kmhhywpw32.us-east-1.awsapprunner.com/"
}
}
}
}