Stablecoin reserve attestations

Stablecoin reserve attestations as JSON: reserves, composition, attestor, on-chain supply, ratio.

Otherv0.1.3

agentwares servers

The hosted MCP servers behind agentwares. One directory per service: what it does, the endpoint, how to authenticate, a call you can paste into a terminal, a client config, and a reference for every tool it serves.

ServiceWhat it doesMCP endpoint
agentcheckDrift and regression monitoring for production AI agents and MCP servers. Uptime-style checks, a public status page, a badge and trust.json are free; paid tiers re-run your suite when a model changes, replay production traces nightly and run an adversarial pack.https://agentwares-agentcheck.vercel.app/api/mcp
agentguard cloudThe hosted control plane for agentguard, the MCP policy proxy: spend caps, approvals for destructive tools, a kill switch, dry-run diffs, a loop breaker and a hash-chained audit log.https://agentwares-agentguard.vercel.app/api/mcp
Real estate deal memoOne US street address in; owner record, automated value estimate, rent estimate, comps, cap rate, cash-on-cash, DSCR, red flags and a one-paragraph memo out.https://agentwares-deal-memo.vercel.app/api/mcp
Readiness scorerGive it a signup URL you own; a headless browser agent tries to sign up the way an AI agent would, and publishes a 0–100 score, the evidence behind every point, a fix list and a badge. Free.https://agentwares-readiness.vercel.app/api/mcp
Agent access indexAsk whether an honestly identified agent may fetch a URL, and why: the verdict, the exact robots.txt line that decided it, what each named AI crawler is told, and the payment rail when access is for sale. Free, no key.https://agentwares-access-index.vercel.app/mcp
MCP livenessGiven a server's name in the official MCP registry, whether a stock client can actually use it: does it answer, does it want a credential, can an agent obtain one, or is the listing pointing at nothing. Free, no key.https://agentwares-mcp-liveness.vercel.app/mcp
Stablecoin reserve attestationsStablecoin issuer reserve attestations as JSON: total reserves, composition by asset category, attestor, on-chain supply and the reserve ratio.https://agentwares-stablecoin.vercel.app/mcp

These are hosted services

There is no product source in this repository. Each directory documents a service we run, and each server.json here is the entry published to the official MCP registry under io.github.agentwares/*. The workflow in .github/workflows/publish-mcp-registry.yml publishes them from this repository with GitHub OIDC — no tokens — which is why every listing's repository link points here.

The implementations live in a private monorepo, because that repository also carries the commercial material for the portfolio. What is open source is open source in full, with its own repo, its own issues and a normal git clone && pnpm install && pnpm test:

RepositoryWhat
agentwares/agentguardthe MCP policy proxy: engine, SDK, CLI and the permission-diff GitHub Action
agentwares/overnight-kitrun a sequence of Claude Code prompts against a repo while you sleep
agentwares/agentsmd-lintlint AGENTS.md / CLAUDE.md / .cursorrules against the repo they describe
agentwares/libsthe shared libraries: @agentwares/mcp-kit, @agentwares/notify, @agentwares/x402, @agentwares/web-bot-auth

Issues

Open an issue in this repository for anything about a hosted service: a wrong answer, a dead endpoint, a tool description that misled your agent, a rate limit that is in your way, a capability you need. Bugs in the open-source clients belong in their own repositories above.

Every file here is generated from the monorepo and from the live services, so a documentation pull request would be overwritten on the next sync — please open an issue instead and it will be fixed at the source.

Machine-readable

Each service serves its own llms.txt and, where it charges, pricing.json. The copies in this repository are snapshots from the last sync; the live URL is authoritative.

Servicellms.txtpricing.json
agentcheckhttps://agentwares-agentcheck.vercel.app/llms.txthttps://agentwares-agentcheck.vercel.app/pricing.json
agentguard cloudhttps://agentwares-agentguard.vercel.app/llms.txthttps://agentwares-agentguard.vercel.app/pricing.json
Real estate deal memohttps://agentwares-deal-memo.vercel.app/llms.txthttps://agentwares-deal-memo.vercel.app/pricing.json
Readiness scorerhttps://agentwares-readiness.vercel.app/llms.txt— (free)
Agent access indexhttps://agentwares-access-index.vercel.app/llms.txt— (free)
MCP livenesshttps://agentwares-mcp-liveness.vercel.app/llms.txt— (free)
Stablecoin reserve attestationshttps://agentwares-stablecoin.vercel.app/llms.txthttps://agentwares-stablecoin.vercel.app/pricing.json

MIT © agentwares contributors. This repository is documentation, and the licence covers it.

Installation

Source-derived launch command. Check the maintainer’s required arguments and credentials before running:

bash
npx -y @agentwares/stablecoin-attestations

Set up in your AI client

Merge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.

json
{
  "mcpServers": {
    "io-github-agentwares-stablecoin-attestations": {
      "command": "npx",
      "args": [
        "-y",
        "@agentwares/stablecoin-attestations"
      ]
    }
  }
}

Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.

Claude Desktop setup reference

Package

@agentwares/stablecoin-attestationsnpm

Compatible MCP Clients

Stablecoin reserve attestations works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.

  • Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.
  • Cursor~/.cursor/mcp.jsonRestart Cursor for changes to take effect.
  • VS Code.vscode/mcp.jsonReload VS Code window for changes to take effect.
  • Windsurf~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect.
  • Claude Code.mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.

Learn More