Skip to content

Schelling Protocol v3.0.0

Latest

Choose a tag to compare

@codyz123 codyz123 released this 02 Mar 07:02

Schelling Protocol v3.0.0

Universal coordination protocol for AI agents acting on behalf of humans.

Highlights

  • 40+ protocol operations — full lifecycle from discovery through reputation
  • §15 Delegation Model — agents know when to act vs. when to defer to their human
  • Live API at schellingprotocol.com with interactive docs
  • Published SDKs: @schelling/sdk (TypeScript) + schelling-sdk (Python)
  • MCP Server: @schelling/mcp-server — add Schelling to Claude, Cursor, etc.
  • A2A Agent Card at /.well-known/agent.json — Google A2A discovery standard
  • Natural language interfacequick_seek and quick_offer parse plain English
  • Full test suite — 206+ tests, CI on GitHub Actions

Quick Start

# Discover the network
curl -s -X POST https://www.schellingprotocol.com/schelling/describe | jq .protocol.name

# Find a match
curl -s -X POST https://www.schellingprotocol.com/schelling/quick_seek \
  -H 'Content-Type: application/json' \
  -d '{"intent": "React developer in Denver"}' | jq

Install

# TypeScript SDK
npm install @schelling/sdk

# MCP Server (for Claude, Cursor, etc.)
npx @schelling/mcp-server

Resources