Readiness Network

Agent Capability Readiness Network

A capability readiness layer for AI agents

A readiness layer for AI agents to discover, preflight, and trust callable capabilities. Capability discovery, pre-call checks, and readiness scoring across MCP, CLI, Skills, and APIs — helping agents select capabilities that are available, safe, and reliable at call time.

POST /v1/capabilities/preflight200 OK
{
  "status": "ready",
  "invoke_now_score": 0.91,
  "confidence": 0.83,
  "valid_for_seconds": 45,
  "expected_p95_latency_ms": 3200,
  "capacity_state": "ok",
  "fallbacks": [
    { "capability_id": "cap_tabula_cli" }
  ]
}

Example preflight response: whether the capability is callable now, the confidence level, and a fallback if it fails.

Background

Challenges agents face when calling external capabilities

Tool discovery is well served by registries. What remains is a unified way to evaluate and assure capabilities between discovery and a reliable call.

Fragmented sources

MCP servers, CLIs, Skills, and APIs are spread across separate registries and repositories, with no unified entry point for discovery and evaluation.

Quality and safety are hard to assess

Publishing a tool has a low barrier; quality varies, and listings may carry over-privileged operations or prompt injection risks.

No real-time availability signal

Uptime, latency, rate limits, and recent failures are typically invisible at the moment of the call.

No outcome feedback loop

A successful response does not mean the task succeeded, and cross-agent outcomes lack a shared feedback mechanism.

How it works

From capability listing to callable evidence

Every score is traceable to its source, audit record, probe result, and call feedback.

  1. 01

    Collect

    Public registries, packages, provider submissions

  2. 02

    Normalize

    Many interfaces resolved into one capability

  3. 03

    Pre-audit

    Permissions, risk labels, injection scan

  4. 04

    Probe

    Handshake, tools/list, read-only probe

  5. 05

    Score

    invoke_now_score + confidence + validity

  6. 06

    Serve

    search / preflight for agents

  7. 07

    Learn

    Call feedback recalibrates scores

Outcome feedback flows back into the scoring engine, so evaluations are continuously calibrated against real calls.

Registry preview

Capability information an agent receives

Scores are per action, carry a validity window, and always include evidence levels and reason codes.

Service region
Sample data

GitHub MCP Server

GitHub · cap_github_repo_tools

Preferred

Issues, pull requests, code search and repository management over the official MCP server. The most-installed developer capability.

mcp_remotecliE6_production_feedback_observed

invoke_now_score

0.95

confidence

0.90

  • provider_verified
  • recent_probe_ok
  • agent_feedback_positive

Slack Web API

Slack (Salesforce) · cap_slack_messaging

Routeable

Channel messaging, search, and workflow triggers. The default enterprise messaging surface for agents.

openapimcp_remoteE5_canary_task_passed

invoke_now_score

0.92

confidence

0.86

  • provider_verified
  • recent_probe_ok
  • mcp_tools_list_ok

Google Drive Connector

Google · cap_google_drive_search

Routeable

File search, content extraction and sharing controls across Workspace documents.

openapimcp_remoteE5_canary_task_passed

invoke_now_score

0.91

confidence

0.85

  • provider_verified
  • recent_probe_ok

Security & trust

Safe admission and least privilege

Unverified capabilities do not enter recommendations. High-risk actions require explicit confirmation and sufficient evidence.

Identity verification
Provider identities are verified, blocking capabilities that impersonate known vendors.
Permission labeling
Every action is labeled by permission scope: read-only, write, destructive, open-world.
Sandboxed execution
Installs and dry-runs run in isolated sandboxes, never in the API service path.
Read-only probes
Probing is read-only — it does not modify state or incur costs.
Evidence levels
Every score carries an auditable E0–E7 provenance.
Privacy minimization
Prompts, files, tokens, and cookies are never collected.

For developers

Three endpoints, one closed loop

Integrate in four steps: search, preflight, call, and report the outcome.

search.sh
curl -X POST http://101.32.68.30/v1/capabilities/search \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "query": "extract tables from a PDF into CSV",
    "agent_runtime": "claude-code",
    "risk_tolerance": "read_only"
  }'

Add capability readiness checks to your agents

Early access is open to agent developers, tool providers, and enterprise platform teams.