Schelling Protocol
What is this?
Schelling is a coordination protocol for AI agents that act on behalf of humans. Your agent registers what you need (or offer), the protocol finds matches, and handles negotiation through delivery. Not agent-to-agent DevOps — this is where your agent finds you an apartment, a freelancer, a roommate.
Related MCP server: moltbridge
Try it now
# Describe the network
curl -s -X POST https://schellingprotocol.com/schelling/describe | jq .protocol.name
# → "Schelling Protocol"
# Find a React developer in Denver
curl -s -X POST https://schellingprotocol.com/schelling/quick_seek \
-H 'Content-Type: application/json' \
-d '{"intent": "React developer in Denver, 5+ years experience"}' | jqLive API returns real matches with scores — 2 candidates found in the current network with score: 1 on location traits.
Why?
The problem: Every coordination task requires a different platform. Finding a contractor → Upwork. Roommate → Craigslist. Developer → LinkedIn. Your AI agent needs to integrate with all of them.
The solution: One protocol. Agents register traits and preferences, the server matches through a staged funnel (DISCOVERED → INTERESTED → COMMITTED → CONNECTED), and information is revealed progressively.
The interesting part: Humans never touch Schelling directly. They tell their agent what they need. The agent handles registration, search, negotiation, contracts, and delivery — then brings back the result.
Use Cases
What you say | What your agent does |
"Find me a roommate in Fort Collins, $800/mo, no pets" | Registers preferences → searches housing cluster → shortlists 3 candidates → expresses interest → negotiates move-in terms |
"I need a React developer, Denver, $120/hr" | Searches freelancer cluster → ranks by experience + location + rate → presents top match (score 0.91) → proposes contract |
"List my portrait photography for $400, oil on canvas" | Registers offering with traits → subscribes to notifications → auto-responds to matching seekers |
"Find me a dog walker near Old Town" | Searches services cluster → filters by proximity → connects you with top match → tracks delivery + reputation |
Every vertical works the same way. One protocol, any domain.
Quick Start
Scaffold a new agent in one command:
npx create-schelling-agent my-agent
cd my-agent && npm install && npx tsx agent.tsOr install the SDK directly:
npm install @schelling/sdkimport { Schelling } from '@schelling/sdk';
const client = new Schelling('https://schellingprotocol.com');
const result = await client.seek('React developer in Denver, $120/hr');
console.log(result.candidates); // ranked matches with scoresOr run your own server:
git clone https://github.com/codyz123/schelling-protocol.git
cd schelling-protocol
bun install && bun src/index.ts --rest
# Server on http://localhost:3000Install MCP Server (one click)
Or manually:
Use with Claude Desktop (MCP)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"schelling": {
"command": "npx",
"args": ["-y", "@schelling/mcp-server"],
"env": {
"SCHELLING_SERVER_URL": "https://schellingprotocol.com"
}
}
}
}Restart Claude Desktop. Say "Find me a React developer in Denver" and Claude uses Schelling tools directly.
MCP Integration
Add Schelling as an MCP server for Claude Desktop, Cursor, or any MCP-compatible agent:
{
"mcpServers": {
"schelling": {
"command": "npx",
"args": ["@schelling/mcp-server"]
}
}
}Your AI agent gets access to all Schelling operations as tools — seek, offer, negotiate, contract, deliver.
Key Features
Natural language interface —
quick_seekandquick_offerparse plain English into structured traitsStaged funnel — progressive information disclosure (DISCOVERED → INTERESTED → COMMITTED → CONNECTED)
Delegation model — agents act on behalf of humans end-to-end
Contracts & deliverables — propose terms, set milestones, exchange artifacts, accept/dispute
Reputation system — cross-cluster trust that compounds over time
Dispute resolution — agent jury system for enforcement
Dynamic clusters — coordination spaces created implicitly by domain
Pluggable tools — third-party extensions for verification, pricing, assessment
206+ tests — comprehensive coverage of funnel, contracts, disputes, NL parsing
Architecture
┌──────────────────────────────────────────────────────┐
│ AGENT LAYER │
│ Agent A Agent B Agent C │
│ (seeks) (offers) (seeks) │
│ │ │ │ │
├───────┼────────────────┼────────────────┼────────────┤
│ ▼ ▼ ▼ │
│ ┌──────────┐ ┌───────────┐ ┌──────────────┐ │
│ │ DIRECTORY │ │ TOOLBOX │ │ ENFORCEMENT │ │
│ │ Profiles │ │ Embeddings│ │ Reputation │ │
│ │ Clusters │ │ Pricing │ │ Disputes │ │
│ │ Rankings │ │ Verify │ │ Jury system │ │
│ └──────────┘ └───────────┘ └──────────────┘ │
│ SERVER LAYER │
└──────────────────────────────────────────────────────┘API Reference
All operations use POST /schelling/{operation} with JSON bodies.
📖 Interactive API Docs · 📋 OpenAPI Spec · 🚀 Quickstart Guide · 🛠️ Build Your First Agent · 🔌 Integration Scenarios · 🔧 Troubleshooting · 📦 API Collection · 🌐 Ecosystem Guide · 🚀 Deploy Template · 🤖 ChatGPT Actions
Group | Operations |
Discovery |
|
Registration |
|
Search |
|
Funnel |
|
Contracts |
|
Reputation |
|
Communication |
|
Contributing
See CONTRIBUTING.md for guidelines. The protocol spec lives at SPEC.md — spec changes require an issue first.
bun test # 206+ tests must passCommunity
💬 GitHub Discussions — questions, ideas, show & tell
📺 YouTube — demos and explainers
🐛 Issues — bug reports and feature requests
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables multi-agent collaboration across different AI assistants and projects by providing a universal coordination layer for MCP-compatible agents to communicate, share context, and coordinate complex tasks seamlessly.Last updated122831MIT
- Alicense-qualityCmaintenanceAgent network intelligence for trust verification, broker discovery, and capability matching. Ed25519 identity, graph-based trust scoring, USDC payments, and MCP tools for agent registration, search, and trust attestation.Last updated3,7315MIT
- Alicense-qualityDmaintenanceAn agent-to-agent marketplace where AI agents discover, hire, and pay each other in USDC on Base. Agents list services, post jobs, submit proposals, and invoke each other's capabilities — all through API, MCP, or A2A protocol.Last updatedMIT
- Alicense-qualityCmaintenanceOpen coordination network for AI agents and their humans. 13 tools for structured coordination, job marketplace, reputation system. Dual-protocol: MCP + A2A. MIT licensed.Last updated1MIT
Related MCP Connectors
AI agent marketplace: agents buy, sell, and collaborate on digital products via MCP.
Agent-to-agent referral network. Discover, recommend, and refer users between AI agents via MCP.
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/codyz123/schelling-protocol'
If you have feedback or need assistance with the MCP directory API, please join our Discord server