streamable-httpApache-2.0updated 6mo ago
Model Context Protocol server for the SPRTX Network, sports tokenization and new global sports economy. Pure PHP. Zero dependencies. Streamable HTTP transport.
What can you do with sprtx mcp?
SPRTX MCP Server
Model Context Protocol server for the SPRTX Network, sports tokenization and new global sports economy. Pure PHP. Zero dependencies. Streamable HTTP transport.
1,435 tokens · 98 sports · 9 global regions · $127.74M market cap · GENESIS phase · Updating Weekly
What is this?
An MCP server that lets AI agents discover, browse, and trade structured sports tokens on the SPRTX network. Agents connect via JSON-RPC 2.0 over Streamable HTTP — no SDK, no browser, no UI. Protocol-native access to the entire sports token registry.
SPRTX tokenizes the global sports hierarchy: federations → leagues → teams → athletes → venues. Every asset has a price, a position in the hierarchy, and demand signal. The MCP server is the agent-native entry point.
Connect
Endpoint: https://mcp.sprtx.net
Transport: Streamable HTTP
Protocol: 2025-03-26
Auto-discovery:
https://sprtx.net/.well-known/mcp/server.json
Capabilities
Resources (read-only, no auth)
| URI | Description |
|---|---|
sprtx://registry/tokens |
All 1,435 tokens with pricing and hierarchy |
sprtx://registry/sports |
98 sport categories + index tokens |
sprtx://registry/stats |
Network summary: market cap, volume, phase, holders |
sprtx://registry/organizations |
Federations, leagues, teams, venues |
sprtx://registry/venues |
Venues with tenant team mappings |
Tools
| Tool | Description | Auth |
|---|---|---|
search_tokens |
Search by keyword, type, sport, price range, parent | Free |
get_token |
Full token detail with hierarchy and demand | Free |
get_hierarchy |
Token family tree: ancestors above, children below | Free |
get_token_price |
Current price, market cap, volume data | Free |
get_waitlist |
Demand signal: waitlist signups, endorsements | Free |
get_network_stats |
Network summary with phase indicator | Free |
request_pher_key |
Initiate PHER key acquisition ($55) | Free |
Trading tools (buy, sell, transfer) require an active PHER key. Coming in v1.1.
Prompts
| Prompt | What it does |
|---|---|
explore-sprtx-market |
Browse the full token market, find opportunities |
evaluate-token |
Analyze a specific token: price, hierarchy, demand |
acquire-pher-key |
Start the key acquisition flow for trading access |
Quick Start
Initialize a session:
curl -s -X POST https://mcp.sprtx.net \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-D - \
-d '{
"jsonrpc": "2.0",
"id": "init-1",
"method": "initialize",
"params": {
"protocolVersion": "2025-03-26",
"clientInfo": {"name": "my-agent", "version": "1.0.0"}
}
}'
Use the returned Mcp-Session-Id header for subsequent requests:
curl -s -X POST https://mcp.sprtx.net \
-H "Content-Type: application/json" \
-H "Mcp-Session-Id: YOUR_SESSION_ID" \
-d '{
"jsonrpc": "2.0",
"id": "search-1",
"method": "tools/call",
"params": {
"name": "search_tokens",
"arguments": {"q": "giants", "type": "TEAM"}
}
}'
Architecture
Agent → mcp.sprtx.net (mcp.php)
↓ JSON-RPC 2.0
api.php (9 endpoints)
↓ prepared statements
MariaDB (blockchain_tokens, blockchain_agents, etc.)
Pure PHP. No Node. No npm. No SDK. Single endpoint, Streamable HTTP transport, session management via filesystem. Runs on any shared hosting with PHP 7.2+.
Token Hierarchy
PLATFORM (SPRTX)
└── SPORT (SOCCER, AMERICANFOOTBALL, BASKETBALL, ...)
└── LEAGUE (NFL, EPL, NBA, MLB, ...)
└── TEAM (NYGIANTS, SFGIANTS, LAKINGS, ...)
└── ATHLETE (coming)
└── GEOLOCATION (US, US-FL, US-CA, ...)
└── VENUE (METLIFE, WEMBLEY, ...)
└── ORDER (2026, W-SPRTX, A-SPRTX, P-SPRTX, ...)
98 sports. 580 teams. 298 venues. 249 geolocations. 112 leagues. Loading ongoing.
PHER Keys
Agents browse for free. Trading requires a PHER key ($55) — a hardware-backed cryptographic identity on the SPRTX network. PHER (Permissible Human Entry Request) is the authentication layer for the Internet of Sports Protocol.
Agent-native key provisioning is active. First movers acquire positions before public trading opens.
Network Phase
SPRTX is in GENESIS — token registry live, zero transactions on-chain. Phase auto-progresses:
| Phase | Transactions | Status |
|---|---|---|
| GENESIS | 0 | Current — early positioning window |
| LAUNCH | 1-100 | First trades on-chain |
| EARLY | 101-10,000 | Active trading |
| ACTIVE | 10,000+ | Mature network |
Loading Status
SPRTX is tokenizing the entire global sports economy — 98 sports across 9 global regions and all stakeholders. Token hierarchies (federations and leagues, teams, athletes, venues) are loading continuously as the network expands. New assets come on-chain weekly.
Agents should poll get_network_stats periodically to track growth.
Early-connected agents see new assets first and can benefit most.
Protocol
Built on the Internet of Sports Protocol (IoSP) — an open protocol for sports data sovereignty. IoSP spec is CC BY-SA 4.0. This MCP server is Apache 2.0.
Naming Conventions
| SPRTX Term | Common Name |
|---|---|
| FOOTBALL | Soccer |
| AMERICANFOOTBALL | Gridiron / NFL-style |
| HOCKEY | Ice hockey |
License
Apache 2.0 — see LICENSE.
Copyright 2026 SPRTX INC
Install
Add sprtx mcp to your client. Pick the one you use.
claude mcp add --transport http sprtx-mcp https://mcp.sprtx.netcodex mcp add sprtx-mcp --url https://mcp.sprtx.net{
"mcpServers": {
"sprtx-mcp": {
"url": "https://mcp.sprtx.net"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"sprtx-mcp": {
"type": "http",
"url": "https://mcp.sprtx.net"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"sprtx-mcp": {
"url": "https://mcp.sprtx.net"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"sprtx-mcp": {
"serverUrl": "https://mcp.sprtx.net"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
7 tools
sprtx mcp exposes 7 tools to a connected agent.
- search_tokens
- Search by keyword, type, sport, price range, parent
- get_token
- Full token detail with hierarchy and demand
- get_hierarchy
- Token family tree: ancestors above, children below
- get_token_price
- Current price, market cap, volume data
- get_waitlist
- Demand signal: waitlist signups, endorsements
- get_network_stats
- Network summary with phase indicator
- request_pher_key
- Initiate PHER key acquisition ($55)
Score
63 / 100
Good
- Documentation20/25
- Maintenance9/25
- Trust13/20
- Capability9/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 181 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 7 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Mar 3, 2026 |