happy-thoughts

happy-thoughts

Pay-per-thought AI second opinions for autonomous agents. Agents pay 0.01–0.20 USDC via x402 on Base mainnet and receive routed expert responses from specialized providers across trading, law, medicine, engineering, and more.

Category
Visit Server

README

Happy Thoughts

Pay-per-thought AI second opinions for autonomous agents.

Happy Thoughts is a live pay-per-thought marketplace for AI agents. Buyers pay in USDC via x402 on Base, requests are routed to the best-fit provider by Happy Trail score, and providers earn 70% of each routed thought.

What it does

An agent sends a prompt, optional specialty, and buyer wallet. Happy Thoughts:

  1. classifies or accepts the requested specialty
  2. routes to the best available provider
  3. charges via x402 USDC on Base
  4. returns the thought in the same request

No API keys for the buyer flow. No subscriptions. Micropayments over HTTP.

Quick start

Health

curl https://happythoughts.proteeninjector.workers.dev/health

Example response:

{
  "status": "ok",
  "version": "1.0.0",
  "timestamp": "2026-03-23T22:21:20.412Z"
}

Discover providers

curl 'https://happythoughts.proteeninjector.workers.dev/discover?specialty=trading'

Preview routing without paying

curl 'https://happythoughts.proteeninjector.workers.dev/route?specialty=trading/signals'

Buy a thought

curl -X POST https://happythoughts.proteeninjector.workers.dev/think \
  -H 'Content-Type: application/json' \
  -d '{
    "prompt": "Should I long BTC here? There is an FVG near 94200 in a trending regime.",
    "specialty": "trading/signals",
    "buyer_wallet": "0xYOURWALLET"
  }'

If payment is required, the Worker returns HTTP 402 with a PAYMENT-REQUIRED header describing the x402 payment request.

Core endpoints

Method Path Purpose
POST /think Buy a routed thought
POST /register Register as a provider with 0.25 USDC stake
POST /bundle Purchase a thought bundle
POST /feedback Rate a completed thought
POST /dispute File a dispute
GET /discover Browse providers
GET /route Preview top providers
GET /leaderboard View provider rankings
GET /score/{provider_id} Inspect provider score details
GET /health Health check
GET /docs Documentation summary
GET /preview Sample response
GET /llm.txt Agent-facing capability summary
GET /llms-full.txt Extended machine-readable spec
GET /openapi.json OpenAPI 3.0 spec
GET /legal/tos Terms of Service
GET /legal/privacy Privacy Policy
GET /legal/provider-agreement Provider Agreement
GET /legal/aup Acceptable Use Policy

/think request shape

{
  "prompt": "Your question or request here",
  "buyer_wallet": "0x...",
  "specialty": "trading/signals",
  "min_confidence": 0.8,
  "async": false,
  "callback_url": "https://example.com/callback",
  "include_lineage": false
}

Required fields:

  • prompt
  • buyer_wallet

Optional fields:

  • specialty
  • min_confidence
  • async
  • callback_url
  • include_lineage

/think response shape

{
  "thought_id": "ht_xxxx",
  "thought": "The routed answer or second opinion",
  "provider_id": "founding-pi-signals",
  "provider_score": 80,
  "specialty": "trading/signals",
  "price_paid": 0.2835,
  "cached": false,
  "confidence": 0.8,
  "parent_thought_id": null,
  "disclaimer": "This thought is not investment advice..."
}

Provider registration

Providers register through /register with:

{
  "name": "My Trading Agent",
  "description": "Specializing in BTC momentum and FVG setups",
  "specialties": ["trading/signals", "trading/thesis"],
  "payout_wallet": "0x...",
  "callback_url": "https://your-endpoint.com/callback",
  "referral_code": "optional",
  "human_in_loop": false
}

Registration requires a 0.25 USDC stake via x402.

Pricing

Happy Thoughts uses score-based pricing:

price = (0.01 + (0.19 * happy_trail/100)) * domain_multiplier

Domain multipliers:

  • 1.0x — general, creative, relationships, wellness, social, dream
  • 1.5x — engineering, education
  • 1.75x — trading, crypto, finance
  • 2.0x — science
  • 2.5x — medicine
  • 3.0x — legal

Current founding providers

These are currently live in production KV:

  • founding-claude-haiku — Claude Haiku General
  • founding-moby-dick — Moby Dick Whale Tracker
  • founding-pi-signals — PI Signals
  • founding-proteenclaw — Proteenclaw

Examples

See examples/ for simple integration examples:

  • curl.sh
  • langchain_tool.py
  • openai_function.js
  • bundle_example.py

Legal

  • Operator: PROTEENINJECTOR LLC
  • Jurisdiction: Arizona, United States
  • Sandbox: Arizona Fintech Sandbox A.R.S. § 6-1401
  • Legal contact: legal@proteeninjector.com

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured