CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
sprtxbabe avatar

Sprtx Mcp

sprtxbabe/sprtx-mcp
HTTPregistry active
Summary

Agent native gateway to a tokenized sports economy covering 98 sports across 1,435 tokens. The server exposes read only access to the full token registry, hierarchy browsing (federation to league to team to venue), search and filtering by sport or price range, and demand signals via waitlist data. Connect over streamable HTTP with zero dependencies, pure PHP backend, no SDK required. Runs in GENESIS phase right now, meaning the registry is live but no on chain transactions yet. Trading tools require a PHER key ($55 hardware backed auth), but discovery and market research are open. Useful if you're building agents that need to track sports assets, evaluate token hierarchies, or position before public trading opens.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

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)

URIDescription
sprtx://registry/tokensAll 1,435 tokens with pricing and hierarchy
sprtx://registry/sports98 sport categories + index tokens
sprtx://registry/statsNetwork summary: market cap, volume, phase, holders
sprtx://registry/organizationsFederations, leagues, teams, venues
sprtx://registry/venuesVenues with tenant team mappings

Tools

ToolDescriptionAuth
search_tokensSearch by keyword, type, sport, price range, parentFree
get_tokenFull token detail with hierarchy and demandFree
get_hierarchyToken family tree: ancestors above, children belowFree
get_token_priceCurrent price, market cap, volume dataFree
get_waitlistDemand signal: waitlist signups, endorsementsFree
get_network_statsNetwork summary with phase indicatorFree
request_pher_keyInitiate PHER key acquisition ($55)Free

Trading tools (buy, sell, transfer) require an active PHER key. Coming in v1.1.

Prompts

PromptWhat it does
explore-sprtx-marketBrowse the full token market, find opportunities
evaluate-tokenAnalyze a specific token: price, hierarchy, demand
acquire-pher-keyStart 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:

PhaseTransactionsStatus
GENESIS0Current — early positioning window
LAUNCH1-100First trades on-chain
EARLY101-10,000Active trading
ACTIVE10,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 TermCommon Name
FOOTBALLSoccer
AMERICANFOOTBALLGridiron / NFL-style
HOCKEYIce hockey

License

Apache 2.0 — see LICENSE.

Copyright 2026 SPRTX INC

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
UpdatedMar 3, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
srgplus avatar
SRG+

srgplus/srgplus-mcp

Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
srotzin avatar
Execute Intent

srotzin/hive-execute

Intent execution engine for autonomous agent task routing
srotzin avatar
Hive Address Screen

srotzin/hive-mcp-address-screen

HiveAddressScreen MCP — pre-settlement on-chain risk screen. 17-vector GoPlus rail
srotzin avatar
Hive Aml Screen

srotzin/hive-mcp-aml-screen

Real-time AML and sanctions screening for agent-to-agent transactions
srotzin avatar
Hive Auction

srotzin/hive-mcp-auction

Sealed-bid and English auctions for agent capabilities and compute time
srotzin avatar
Hive Backup

srotzin/hive-mcp-backup

Snapshot and restore service for agent state and DID-bound configuration