Skip to main content
Glama

CSPR Sentinel

CSPR Sentinel is a policy-controlled payment and reputation layer for autonomous AI agents on Casper. It exposes an MCP server that lets agents discover paid services, request x402 purchases, wait for human approval when required, and build bilateral reputation from verifiable outcomes.

The included RWA diligence agent demonstrates the full flow with synthetic commercial paper data:

  1. It buys a low-cost asset verification service automatically.

  2. It sends a higher-cost risk intelligence request to the owner approval queue.

  3. After approval, the request is paid and delivered.

  4. The application stores the Casper transaction hash and anchors reputation aggregates on-chain.

The provider datasets are synthetic and are not investment, legal, or compliance advice.

Why it exists

Agents need the ability to pay for one API call at a time, but unrestricted signing keys are unsafe. CSPR Sentinel separates planning from authority. The model can request a purchase; deterministic policy code decides whether it is denied, executed, or held for owner approval.

Related MCP server: AgentPay

Architecture

flowchart LR
    A[RWA Agent] -->|MCP tool call| M[CSPR Sentinel MCP]
    M --> P[Policy engine]
    P -->|small request| X[x402 client]
    P -->|large request| H[Owner approval]
    H --> X
    X --> S[Paid API]
    S --> F[Casper facilitator]
    F --> C[Casper Testnet]
    C --> L[Payment evidence]
    L --> R[Reputation registry]
    P --> N[(Neon)]
    R --> N

Monorepo

  • apps/web: Next.js dashboard, API routes, paid provider endpoints, x402 and contract adapters.

  • packages/core: policy engine, purchase state machine, reputation formulas, Neon repository.

  • packages/mcp: five MCP tools over Streamable HTTP.

  • packages/agent: Anthropic RWA planner and deterministic fallback.

  • contracts/reputation: Odra contract for counters, payment receipts, and rating uniqueness.

MCP tools

Tool

Purpose

list_services

Filter paid APIs by category, price, and provider reputation.

request_purchase

Run policy checks and auto-pay or create an approval.

get_purchase_status

Read policy, approval, payment, delivery, and evidence state.

submit_provider_rating

Submit one verified-buyer rating per delivered purchase.

get_reputation

Read agent or provider score, counters, label, and chain anchor.

Purchase states are requested, policy_denied, pending_approval, approved, paying, settled, delivered, and failed.

Local development

Requirements: Node.js 20 or newer and pnpm 10.

cp .env.example apps/web/.env.local
pnpm install
pnpm dev

Open http://localhost:3000. The default DEMO_MODE=true uses simulated deploy hashes and clearly labels the interface as Simulation mode. Anthropic is optional in this mode; without a key, a deterministic planner creates the same two-service diligence plan.

Run verification:

pnpm typecheck
pnpm test
pnpm security:scan
pnpm build

Neon persistence

Set DATABASE_URL, apply the included Drizzle migration, then start the app:

pnpm db:migrate
pnpm dev

Without DATABASE_URL, the app uses a process-local memory repository suitable for the interactive demo and tests.

GitHub owner access

Set GITHUB_ID, GITHUB_SECRET, NEXTAUTH_SECRET, and OWNER_GITHUB_LOGIN. Only the allow-listed GitHub login can create approval decisions in production. A matching x-demo-admin-key header is also accepted for controlled API automation. MCP, direct purchase, and rating requests use the separate x-agent-api-key header.

Casper Testnet mode

Follow docs/TESTNET.md. Real mode requires a funded agent wallet, WCSPR, the official Casper x402 facilitator, two provider payees, and the deployed reputation contract.

When all variables are set, change DEMO_MODE=false. The runtime then:

  • creates EIP-712 payment authorizations with @make-software/casper-x402;

  • settles through the configured facilitator;

  • stores the returned Casper transaction hash;

  • calls record_purchase and record_provider_rating on the reputation contract.

Private keys are read only from server environment variables. They are never returned by an API, stored in Neon, or shipped to the browser.

Before starting real mode, validate every required setting and probe the Casper RPC and facilitator:

pnpm testnet:preflight

Real mode fails closed: an incomplete x402 or reputation configuration will stop the request instead of silently producing simulated transaction hashes.

Deployment

The public deployment runs on Vercel with Neon PostgreSQL persistence. It intentionally remains in clearly labelled simulation mode until the generated testnet wallets receive CSPR/WCSPR and the reputation contract is deployed; DEMO_MODE=false is the explicit cutover switch.

  1. Create a Neon database and apply the migration.

  2. Import this repository into Vercel with root directory apps/web.

  3. Add the environment variables from .env.example.

  4. Set NEXT_PUBLIC_APP_URL to the deployed origin.

  5. Add the production OAuth callback URL to the GitHub OAuth app.

  6. Verify /api/state, /api/mcp, one auto-payment, and one approval payment.

Vercel and external monitors can use /api/health. It returns HTTP 503 when real mode is incomplete, without exposing secret values. GitHub Actions verifies the TypeScript application, security scan, Odra tests, and a reproducible optimized contract WASM build.

Reputation model

  • Provider: 60% verified buyer rating and 40% delivery success.

  • Agent: 50% payment success, 30% policy compliance, and 20% approval acceptance.

  • New subjects start at 50 / Unproven.

  • Crossing an automatic threshold is compliant; exceeding a hard allow-list, quote, reputation, or daily-budget rule is not.

  • Score weights live in the application. Raw aggregates and payment evidence live in the contract so weights can evolve without migrating history.

References

Licensed under Apache-2.0.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yi-dong-z/cspr-sentinel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server