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
augustas11 avatar

AntFeed

augustas11/antseed-explorer
STDIOregistry active
Summary

Connects your MCP agent to the AntSeed P2P AI network, a Base mainnet marketplace where buyers pay USDC for inference from independent providers. The server surfaces buyer profiles, trust scores, settlement history, and live network stats indexed from the AntseedChannels contract. You can query buyer activity by address, check reliability metrics like ghost session rates, discover active providers, and read token-level usage data from settled sessions. Useful when you need to vet counterparties, track spending patterns, or explore demand-side analytics on a decentralized AI services layer. The underlying explorer runs on Next.js with Postgres indexing of Reserved, ChannelSettled, and ChannelClosed events.

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 →

AntSeed Demand Explorer

Live at antfeed.org

An open-source, on-chain index of buyer activity on the AntSeed P2P AI services network. Provider/seller activity is already surfaced on antseed.com/network; this app fills the gap on the demand side: who is spending USDC on inference, with which providers, and how reliably.

Not affiliated with the AntSeed team.


What it does

  1. Funded buyers — per-depositor volume, sessions, unique sellers, ghost-session count, and a derived Buyer Trust Score (0–100).
  2. Network leaderboard — sortable, filterable buyer ranking.
  3. Network overview — daily settlement volume, active buyers, last 30 days.
  4. Token usage detail — input/output tokens and request count from AntseedStats.MetadataRecorded, with legacy settled-session metadata decoded only after validation.
  5. Public scoring API — GET /api/score/[address] returns the trust score JSON for any address.

Stack

  • Next.js 15 (App Router) + TypeScript
  • viem for Base reads (no wallet, read-only)
  • Neon Postgres + Drizzle ORM (HTTP driver, serverless-friendly)
  • Tailwind CSS, Recharts

Getting started locally

cp .env.example .env       # fill DATABASE_URL with a Neon DB or a local Postgres
npm install
npm run db:push            # apply schema to your DB
npm run dev
ScriptWhat it does
npm run devLocal Next.js dev server
npm run buildProduction build
npm run db:generateDiff schema and emit a new migration in drizzle/
npm run db:pushApply schema directly (dev-only, no migration history)
npm run db:migrateApply pending migrations from drizzle/
npm run db:studioOpen Drizzle Studio for browsing the DB
npm run syncRun a one-shot indexer pass against the configured DB
npm run sync loopLoop until caught up to chain head

Environment variables

vardefaultmeaning
DATABASE_URLrequiredPostgres connection string.
RPC_URLhttps://base.drpc.orgBase RPC. DRPC and Tenderly free tiers allow large eth_getLogs ranges.
CHAIN_ID84538453 Base mainnet, 84532 Base Sepolia.
CRON_SECRETnoneRequired in production. Cron requests must send Authorization: Bearer <CRON_SECRET>.
LOG_BATCH_SIZE2000Max blocks per getLogs. Indexer auto-shrinks if RPC complains.
CHANNELS_ADDRESS0xBA66d3b4f...Override only if you've forked to a different contract.
START_BLOCKdeployment blockFirst block to index from.

Contract integration

Core settlement contract: AntseedChannels on Base mainnet, 0xBA66d3b4fbCf472F6F11D6F9F96aaCE96516F09d, deployed at block 45,667,842. Auxiliary indexers also read AntseedStats, ANTS, staking, deposits, and identity events for token accounting, holder state, DAU, and address enrichment.

eventsemantic
Reservedsession opened (buyer locks maxAmount for a seller).
ChannelSettledseller called settle; delta USDC moved this batch. metadata is seller-provided opaque bytes and is stored only after validation.
MetadataRecordedauthorized stats writer recorded per-inference input/output tokens and request count; canonical source for network token totals.
ChannelClosedchannel closed. settledAmount=0 + no prior ChannelSettled → ghost.
ChannelTopUpbuyer added more deposit to an existing channel.
ChannelWithdrawnbuyer pulled refund.
CloseRequestedgrace-period close started.

Per-buyer aggregates are recomputed in SQL on every sync — no event replay needed for score recomputes. The indexer runs reconcileDrift() after each pass to catch rare partial-sync races.


Buyer Trust Score

lib/score.ts, 0–100, four sub-scores:

  • Volume (0–30) — log10(USDC + 1) / log10(100) × 30. $100 settled = 30.
  • Consistency (0–25) — log10(sessions + 1) / log10(50) × 25.
  • Diversity (0–25) — <3 unique sellers = 0; 3 = 10; 10+ = 25.
  • Reliability (0–20) — settled / (settled + ghost) × 20.

A buyer with ≥3 distinct settled sellers earns the Qualified Proven Sign badge.


Public APIs

GET  /api/stats                      Network aggregates + 30d daily series
GET  /api/buyers?limit=&offset=&qualified=&minScore=&sort=
GET  /api/buyers/{address}           Buyer detail + sessions + top sellers
GET  /api/score/{address}            Trust score JSON
POST /api/sync?force=1               Manual indexer pass (Bearer sync secret required)

/api/score/{address} example:

{
  "address": "0x…",
  "score": 73,
  "tier": "trusted",
  "qualified": true,
  "breakdown": {
    "total": 73,
    "volume": 24.1,
    "consistency": 18.0,
    "diversity": 18.6,
    "reliability": 12.0,
    "qualified": true
  },
  "stats": { "…": "raw indexed counters" }
}

Operations

  • Vercel cron is the scheduled indexer owner. vercel.json runs /api/cron/sync every five minutes; do not add an external minute-level cron for the same endpoint.
  • /api/cron/hero is an authenticated manual repair endpoint only. Call it with ?repair=1 after confirming /api/cron/sync cannot refresh the hero snapshot.
  • Runtime contract checks require an explicit target: API_RUNTIME_BASE_URL=http://localhost:3000 npm run test:api-runtime and CSP_RUNTIME_URL=http://localhost:3000 npm run test:csp-runtime.
  • Verify shared public API rate-limit storage after migrations with npm run check:rate-limit-storage; otherwise the app falls back to per-instance limits until the table exists.

Project layout

antseed-explorer/
  app/
    layout.tsx                  # nav + Sync button
    page.tsx                    # / overview + top 10
    buyers/page.tsx             # /buyers leaderboard
    buyers/[address]/page.tsx   # buyer detail
    api/
      cron/sync/route.ts        # cron-driven indexer pass
      sync/route.ts             # authenticated manual sync endpoint
      buyers/route.ts
      buyers/[address]/route.ts
      stats/route.ts
      score/[address]/route.ts
    components/                 # Charts, Badges, CopyButton, UI helpers
  lib/
    schema.ts                   # Drizzle Postgres schema
    db.ts                       # Neon HTTP client + state helpers
    queries.ts                  # all reads used by pages/APIs
    indexer.ts                  # getLogs loop, ghost detection, recompute, reconcile
    antseed.ts                  # contract addresses + ABI
    chain.ts                    # viem client
    score.ts                    # Buyer Trust Score
    format.ts
  scripts/
    sync-cli.ts                 # local CLI sync against DATABASE_URL
  drizzle/                      # generated migrations
  vercel.json                   # cron config + maxDuration

Contributing

Issues and PRs are welcome. The most useful contributions right now:

  • Improved scoring models or new score dimensions
  • Additional on-chain event types or contract support
  • UI improvements and new views (e.g. seller-side explorer)
  • Better RPC resilience / retry logic in the indexer

Open an issue to discuss before submitting a large change.

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 →

Configuration

ANTFEED_EXPLORER_URLdefault: https://antfeed.org

Base URL for the AntFeed Explorer REST API.

ANTSEED_BUYER_URLdefault: http://localhost:8377

Local AntSeed buyer RPC URL. Required only for the transactional `create_session` tool; omit for read-only use.

ANTSEED_MAX_DEPOSIT_USDCdefault: 10

Defense-in-depth ceiling on `create_session` deposits, in USDC. Hard-capped at 10000.

ANTSEED_BUYER_STRICTdefault: 0

Set to 1 to require the local buyer to identify itself via /health. Recommended on shared dev boxes.

Categories
AI & LLM Tools
Registryactive
Package@antfeed/mcp
TransportSTDIO
UpdatedMay 17, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
cerebrixos-org avatar
Tuning Engines - Governed AI Runtime

io.github.cerebrixos-org/tuning-engines

Govern model, agent, skill, and MCP workflows with policy, approvals, traces, and usage analytics.
2
aganium avatar
Agenium Mcp Server

io.github.chorghemaruti64-creator/agenium-mcp-server

Bridge MCP servers to the AGENIUM agent:// network via DNS discovery
2
ddmanyes avatar
second-brain MCP

io.github.ddmanyes/mcp-second-brain

Self-maintaining knowledge vault: figure-level search, auto-wikilinks, and memory compression.
2
eidetic-works avatar
Nucleus

io.github.eidetic-works/nucleus

MCP server for persistent memory, execution verification, governance, and compliance.
2
emiliaprotocol avatar
Mcp Server

io.github.emiliaprotocol/mcp-server

Trust & human sign-off for AI agents: approval required before irreversible agent actions
2
ludmila-omlopes avatar
Youtube Video Analyzer

io.github.ludmila-omlopes/youtube-video-analyzer

MCP stdio server for analyzing YouTube videos with Google Gemini
2