XLUXX Trust Layer

Runtime trust scoring for MCP servers. Monitors 15,000+ servers with reliability metrics, drift detection, and fallback recommendations.

XLUXX Trust Layer

Runtime trust scoring for the Model Context Protocol. Makes AI agents reliable.

npm version PyPI version MCP Server License API Status

XLUXX is a runtime trust layer for AI agents that use MCP (Model Context Protocol) tools. Before an agent calls any tool, XLUXX tells it which one is most reliable — with confidence scores, fallbacks, risk flags, and the Resonance Engine for temporal stability analysis. The Context Gate prevents agents from returning responses when their context has drifted from its original instructions.

  • 15,000+ MCP servers indexed
  • 7,600+ tools cataloged
  • 100% scoring coverage — every server has a fresh trust score
  • Continuous testing every 15 minutes

Table of contents


Quick start

Curl

curl -X POST https://api.xluxx.net/resolve-tool \
  -H "Content-Type: application/json" \
  -d '{"intent": "search the web"}'
{
  "best_server": "brave-search",
  "confidence": 0.985,
  "resonance_score": 98.5,
  "fractal_reliability": 100,
  "reason": "excellent uptime, fast response, consistent",
  "fallback": "fetch",
  "risk_flags": []
}

Python

pip install xluxx
from xluxx import TrustLayer

trust = TrustLayer()
result = trust.resolve("search the web")
print(result.best_server, result.confidence)

Node.js

npm install xluxx-trust
const { resolveTool } = require('xluxx-trust');
const result = await resolveTool('search the web');
console.log(result.best_server, result.confidence);

MCP server (Claude Desktop, Cursor, etc.)

npx -y xluxx-mcp-server

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "xluxx": {
      "command": "npx",
      "args": ["-y", "xluxx-mcp-server"]
    }
  }
}

Why XLUXX

AI agents fail when the tools they call are unreliable. Most MCP servers don't publish uptime, latency, or schema-stability data — and even when they do, the agent has no way to act on it at runtime.

XLUXX sits in the agent's execution path. It:

  1. Resolves intents to tools — given "search the web", it returns the most reliable MCP server for that capability.
  2. Scores every tool continuously — uptime, latency, schema drift, response coherence.
  3. Surfaces risks before they bite — bursty failures, degradation cascades, behavioral drift.
  4. Provides fallbacks — independent backups, ranked by capability overlap.
  5. Gates the agent's output — blocks responses when the agent has lost track of its original instructions.

The Resonance Engine

XLUXX doesn't just check whether a tool is up. It measures whether the tool remains stable, coherent, and safe to compose into agent workflows. Four metrics:

MetricWhat it measures
Fractal Reliability IndexDetects bursty failures, degradation cascades, and unstable latency patterns across multiple time scales
Coherence DriftWhether a server's behavior is changing from its baseline (schema drift, response inconsistency, capability shift)
Toolchain ResonanceScores tool combinations, not just individuals — exposes weakest links and risk-adjusted reliability for multi-step chains
Fallback StabilityEnsures fallbacks are independent and reliable — a fallback that fails when the primary fails is no fallback

The Context Gate

A context firewall for AI agents. Long conversations cause agents to drift from their original instructions — through context window pressure, prompt injection, or simple cumulative noise. The Context Gate detects this and blocks responses when drift exceeds a threshold.

Workflow:

  1. Register the original system prompt at the start of a session → get a session_id
  2. Check between turns to monitor drift continuously (gate=PASS or gate=BLOCK)
  3. Verify before returning critical responses to the user as a final gate
  4. Inspect the audit trail of all checks for the session

When the gate blocks, the response includes the missing instructions and recommended re-anchoring text.


API reference

Base URL: https://api.xluxx.net

All endpoints accept an optional X-API-Key header. Free tier works without a key (rate-limited). Higher tiers require a key from /register.

Core

EndpointMethodDescription
/healthGETService health and version
/GETAPI root with full endpoint listing
/resolve-toolPOSTFind the best tool for an intent
/rank-toolsPOSTRank a list of tools by trust score
/recommendPOSTGenerate tool-chain recommendations for a task
/serversGETList all tracked servers (?limit=)
/servers/:idGETGet a specific server's full record
/searchGETSearch servers by capability (?q=)
/categoriesGETList server categories with counts
/trendingGETTrending servers by recent activity
/evaluatePOSTSubmit a server URL for live evaluation
/status/:idGETReal-time server health and outage detection
/trends/:idGETHistorical reliability (24h, 7d, all-time)
/statsGETAggregate platform stats
/toolsGETList all cataloged tools
/alertsGETActive alerts for degraded or down servers

Resonance Engine

EndpointMethodDescription
/resonance/:idGETFractal Reliability + Coherence Drift for a server
/resonance/:id/predictGETPredict near-term reliability (?horizon= hours)
/resonance/:id/driftGETDetect coherence drift (?window=24h|7d|30d)
/resonance/:id/reportGETComprehensive trust report (markdown or JSON)
/resonance/:id/explainGETFactor breakdown explaining a server's score
/resonance/comparePOSTCompare a primary against alternatives
/resonance/fallbackPOSTFind best independent fallback for a server
/resonance/fleetPOSTAggregate health across a fleet of servers
/resonance/chainPOSTScore a multi-step toolchain

Context Gate

EndpointMethodDescription
/context-gatePOSTOne-shot drift check (no session)
/context-gate/registerPOSTRegister a session, get session_id
/context-gate/checkPOSTContinuous mid-conversation check
/context-gate/verifyPOSTFinal gate before returning a response
/context-gate/session/:idGETInspect a session and its check history
/context-gate/session/:idDELETEClose a session

SEO and discovery

EndpointMethodDescription
/seo/server-pagesGETGenerate SEO-friendly per-server pages
/seo/category-pagesGETGenerate SEO-friendly per-category pages
/badge/:id.svgGETTrust badge SVG for a server
/hub/:idGETPublic hub page for a server
/mcp/:idGETMCP-server metadata page

Account and management

EndpointMethodDescription
/registerPOSTGet a free API key
/reissue-keyPOSTReissue an API key
/upgrade/:tierGETUpgrade flow for Starter / Pro
/usageGETCurrent usage and quota
/analyticsGETAPI usage analytics

MCP and ingestion

EndpointMethodDescription
/.well-known/mcp.jsonGETMCP discovery manifest
/importPOSTBulk-import server records
/import-toolsPOSTBulk-import tool records
/crawl-toolsPOSTTrigger tool crawler
/score-allPOSTRe-score every tracked server

SDKs

SDKPackageInstall
Pythonxluxxpip install xluxx
Node.js / TypeScriptxluxx-trustnpm install xluxx-trust
MCP Serverxluxx-mcp-servernpx -y xluxx-mcp-server
LangChain resolverbundled in reposee sdk/langchain/xluxx_resolver.py

The MCP server exposes 16 tools: resolve_tool, rank_tools, recommend_toolchain, check_server_status, get_reliability_trends, get_resonance_score, search_servers, get_alerts, analyze_toolchain_risk, predict_reliability, compare_alternatives, detect_drift, generate_trust_report, find_fallback, monitor_fleet, explain_score, verify_context_integrity, verify_context. See mcp-server/README.md for full documentation.


Pricing

TierPriceCalls / dayUse case
Free$0100Personal projects, evaluation
Starter$49 / mo1,000Small production agents
Pro$149 / mo10,000High-volume agent fleets
EnterpriseCustom100,000+SLA, on-prem, custom scoring

Get a free key:

curl -X POST https://api.xluxx.net/register \
  -H "Content-Type: application/json" \
  -d '{"name": "your-name", "email": "[email protected]"}'

Links


License

Apache-2.0

Author

Pablo Solorzano Cohen — [email protected]


Keywords: MCP, Model Context Protocol, AI agent reliability, MCP trust scoring, MCP server registry, agent runtime, tool selection, context gate, context firewall, prompt injection defense, resonance engine, fractal reliability, coherence drift, toolchain resonance, LLM observability.

İlgili Sunucular

NotebookLM Web Importer

Web sayfalarını ve YouTube videolarını tek tıkla NotebookLM'e aktarın. 200.000'den fazla kullanıcı tarafından güveniliyor.

Chrome Eklentisini Yükle