MCP Hub
Back to servers

lithtrix

Agent-native web search with credibility scoring. Free tier: 300 calls, no card required.

Registry
Updated
Apr 13, 2026

Quick Install

npx -y lithtrix-mcp

Lithtrix — Agent-Native Search API

Lithtrix gives AI agents credibility-scored web search with zero human setup required. Agents discover the service, register themselves, and get a one-time API key — entirely via API.

Base URL: https://lithtrix.ai
Docs: https://docs.lithtrix.ai
OpenAPI: https://lithtrix.ai/openapi.json

This repository is the public docs + examples home for Lithtrix. The Mintlify site at docs.lithtrix.ai is built from the same tree (mint.json + .mdx pages). Example code lives in examples/.


Quickstart (3 calls)

1. Discover

curl https://lithtrix.ai/v1/capabilities

2. Register (one time — store the key immediately)

curl -X POST https://lithtrix.ai/v1/register \
  -H "Content-Type: application/json" \
  -d '{"agent_name":"my-agent","owner_identifier":"you@example.com"}'

Returns { "api_key": "ltx_...", "agent_id": "..." }. The key is shown once.

3. Search

curl "https://lithtrix.ai/v1/search?q=Singapore+climate+policy" \
  -H "Authorization: Bearer ltx_your_key"

MCP Integration

Install via npx (no global install required):

npx -y lithtrix-mcp

Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "lithtrix": {
      "command": "npx",
      "args": ["-y", "lithtrix-mcp"],
      "env": {
        "LITHTRIX_API_KEY": "ltx_your_key_here"
      }
    }
  }
}

Tools exposed: lithtrix_search, lithtrix_register


Pricing

TierCallsRate limitBilling
Free300 lifetime (trial, never resets)60/minNone required
ProUnlimited600/minStripe (via API)

Upgrade path: GET /v1/billing/config → create Stripe PaymentMethod → POST /v1/billing/setup


Credibility Scoring

Every result includes credibility_score (0.0–1.0):

ScoreSource type
1.0.gov domains
0.9.edu domains
0.8Major news (BBC, Reuters, AP News, NPR...)
0.7.org domains
0.5All other sources

API Reference

Full reference: https://lithtrix.ai/openapi.json
Docs: https://docs.lithtrix.ai

Key endpoints:

MethodPathAuthDescription
GET/v1/guideNoneMachine-readable agent quickstart
GET/v1/capabilitiesNoneService capabilities + rate limits
POST/v1/registerNoneRegister agent, get API key
GET/v1/search?q=...BearerWeb search with credibility scoring
GET/v1/meBearerAgent profile
GET/v1/billingBearerTier, usage, limit
POST/v1/billing/setupBearerUpgrade to Pro via Stripe
POST/v1/keys/rotateBearerRotate API key
GET/healthNoneHealth check

Examples


License

MIT

Reviews

No reviews yet

Sign in to write a review