FloydLabs
MCP Server Live

Connect Your LLM to Floyd Labs

Access 73+ production-ready AI skills through a single proxy tool. Context-efficient: only 1 tool schema loads instead of 73.

73+
AI Skills
MCP 2024-11
Protocol
< 500ms
Latency
99.9%
Uptime
1

Get Your API Key

Request access to get your unique Floyd Labs API key.

Request API Access
2

Configure Your MCP Client

Add Floyd Labs to your MCP client configuration.

Claude Desktop

Add to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "floyd-labs": {
      "command": "npx",
      "args": ["-y", "@anthropics/mcp-proxy"],
      "env": {
        "MCP_PROXY_URL": "https://floydslabs.com/api/mcp",
        "MCP_PROXY_HEADERS": "Authorization: Bearer YOUR_API_KEY"
      }
    }
  }
}

Direct HTTP (Any Client)

For custom integrations, use the JSON-RPC 2.0 endpoint directly:

POST https://floydslabs.com/api/mcp
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}
3

Start Using Tools

Once connected, your LLM can access all Floyd Labs skills. Example:

// Execute a skill through the floyd proxy
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "floyd",
    "arguments": {
      "action": "execute",
      "skill": "concept-crystallization",
      "args": {
        "action": "crystallize",
        "concept": "microservices architecture"
      }
    }
  }
}

// List all available skills
{ "action": "list" }

// Get schema for a specific skill
{ "action": "describe", "skill": "git-bisect" }

What You Can Do

Analogy Synthesis

reasoning

Generate meaningful analogies to explain complex concepts

Code Review

workflows

Systematic code review with quality analysis

API Validation

patterns

Validate API contracts for compatibility

Risk Assessment

analysis

Analyze and quantify project risks

Architecture Docs

documentation

Generate system architecture documentation

100+ More...

all

Explore all available skills

View all

API Reference

initializeInitialize the MCP connection
tools/listList all available tools
Auth Required
tools/callExecute a tool with arguments
Auth Required
pingHealth check endpoint

Ready to connect your AI to the Floyd Labs MCP server?