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
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
reasoningGenerate meaningful analogies to explain complex concepts
Code Review
workflowsSystematic code review with quality analysis
API Validation
patternsValidate API contracts for compatibility
Risk Assessment
analysisAnalyze and quantify project risks
Architecture Docs
documentationGenerate system architecture documentation
API Reference
initializeInitialize the MCP connectiontools/listList all available toolstools/callExecute a tool with argumentspingHealth check endpointReady to connect your AI to the Floyd Labs MCP server?