Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces where agents download and use skills autonomously. --- name: autonomous-agent description: CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces
git clone https://github.com/FinTechTonic/autonomous-agent.gitOverall rank
#33
Adoption
4 GitHub stars
Trust
Unknown
Freshness
Apr 15, 2026
Freshness
Last checked Apr 15, 2026
Best For
autonomous-agent is best for general automation workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces where agents download and use skills autonomously. --- name: autonomous-agent description: CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces Capability contract not published. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Fintechtonic
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/FinTechTonic/autonomous-agent.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Fintechtonic
Protocol compatibility
MCP
Adoption signal
4 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
3
Snippets
0
Languages
typescript
Parameters
text
get_wallet_addresses
→ aptos empty? → create_aptos_wallet → credit_aptos_wallet → tell user to whitelist
→ aptos exists? → balance_aptos
→ has USDC? → run_prediction({ symbol: "X", horizon: 30 })
→ no USDC? → tell user to fund USDC, provide addresstext
get_wallet_addresses
→ evm empty? → create_evm_wallet → fund_evm_wallet → tell user to whitelist
→ evm exists? → balance_evm({ chain: "baseSepolia" })
→ has ETH? → link_bank_account
→ no ETH? → fund_evm_wallet (returns faucet URL)text
get_wallet_addresses → has aptos or evm? → get_agent_reputation_score + get_borrower_score → neither? → create wallets first, whitelist, then query
Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces where agents download and use skills autonomously. --- name: autonomous-agent description: CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces
This skill gives you (the agent) a set of tools to: create and manage Aptos and EVM wallets, check balances, and call x402-paid MCP tools (stock prediction, backtest, bank linking, agent/borrower scores). Payment is automatic — when a paid tool returns 402, the skill signs, verifies, settles, and retries transparently. You just call the tool; the result comes back.
Follow this sequence on first use, then skip to the tool you need:
get_wallet_addresses (no args).create_aptos_wallet then create_evm_wallet.credit_aptos_wallet (Aptos faucet) and fund_evm_wallet (EVM faucet instructions).https://arnstein.ch/flow.html.balance_aptos (must have USDC for predictions/backtests) and/or balance_evm (must have ETH for bank linking).run_prediction, run_backtest, link_bank_account, or score tools.Important: Paid tools will fail with a wallet/whitelist error if the address has not been funded and whitelisted. Always verify wallets and balances first.
get_wallet_addresses{ aptos: [{ address, network }], evm: [{ address, network }] } — may be empty arrays.create_aptos_wallet{ force?: boolean, network?: "testnet" | "mainnet" } — defaults: force=false, network=testnet.{ success, address, network, message } or { success: false, message, addresses } if wallet exists and force=false.get_wallet_addresses returns empty aptos array, or user requests a new wallet.success: false and wallet already exists, either use the existing wallet or retry with force: true to add another.create_evm_wallet{ force?: boolean, network?: "testnet" | "mainnet" } — defaults: force=false, network=testnet.{ success, address, network, message } or { success: false, message, addresses }.create_aptos_wallet.credit_aptos_wallet{ amount_octas?: number } — default 100,000,000 (= 1 APT).{ success: true, address } (programmatic faucet funded).{ success: true, address, faucet_url } (instructions only; no programmatic faucet).create_aptos_wallet first).fund_evm_wallet{ success: true, address, faucet_url, message } (manual funding instructions).create_evm_wallet first).balance_aptos{ address, balances: { usdc, apt } } or { error }.run_prediction, run_backtest, or score tools to confirm sufficient USDC.balance_evm{ chain?: string } — default "base". Supported: base, baseSepolia, ethereum, polygon, arbitrum, optimism.{ address, chain, balance, symbol } or { error }.link_bank_account to confirm sufficient ETH on Base Sepolia.chain: "baseSepolia".All paid tools accept both Aptos and EVM payment. The skill picks the best option or follows
PREFERRED_PAYMENT_ORDER. You never see 402 errors — just call the tool and get the result or an error message.
run_prediction{ symbol: string, horizon?: number } — symbol is a stock ticker (e.g. "AAPL"), horizon is days (default 30).{ error }.run_prediction({ symbol: "AAPL", horizon: 30 })run_backtest{ symbol: string, startDate?: string, endDate?: string, strategy?: string } — dates in "YYYY-MM-DD", strategy defaults to "chronos".{ error }.run_backtest({ symbol: "TSLA", startDate: "2024-01-01", endDate: "2024-12-31", strategy: "chronos" })link_bank_account{ link_token } or account ID for Plaid bank linking, or { error }.get_agent_reputation_score{ agent_address?: string, payer_wallet?: string } — both optional; uses the configured wallet if omitted.{ reputation_score: number } (e.g. 100) or 403 if not allowlisted, or { error }.payer_wallet).get_borrower_score{ agent_address?: string, payer_wallet?: string } — same pattern.{ score: number } (100 base; higher with bank linked) or { error }.get_agent_reputation_score_by_email{ email: string, payer_wallet?: string } — resolves email to allowlisted agent.{ reputation_score: number } or { error }.SCORE_BY_EMAIL_ENABLED must be set on the server. Higher fee.get_borrower_score_by_email{ email: string, payer_wallet?: string } — same pattern.{ score: number } or { error }.SCORE_BY_EMAIL_ENABLED must be set on the server. Higher fee.get_wallet_addresses
→ aptos empty? → create_aptos_wallet → credit_aptos_wallet → tell user to whitelist
→ aptos exists? → balance_aptos
→ has USDC? → run_prediction({ symbol: "X", horizon: 30 })
→ no USDC? → tell user to fund USDC, provide address
get_wallet_addresses
→ evm empty? → create_evm_wallet → fund_evm_wallet → tell user to whitelist
→ evm exists? → balance_evm({ chain: "baseSepolia" })
→ has ETH? → link_bank_account
→ no ETH? → fund_evm_wallet (returns faucet URL)
get_wallet_addresses
→ has aptos or evm? → get_agent_reputation_score + get_borrower_score
→ neither? → create wallets first, whitelist, then query
| Error pattern | Meaning | What to do |
|--------------|---------|------------|
| "No Aptos wallet" | Wallet file missing | Call create_aptos_wallet |
| "No EVM wallet" | Wallet file missing | Call create_evm_wallet |
| "already exist. Use force: true" | Wallet exists, not overwriting | Use existing wallet, or pass force: true to add another |
| "Payment verification failed" | Insufficient funds or wrong asset | Check balance; tell user to fund the wallet |
| "No Aptos wallet configured" / "No EVM wallet configured" | Paid tool needs wallet that doesn't exist | Create the missing wallet type |
| "Unsupported chain" | Invalid chain name for balance_evm | Use one of: base, baseSepolia, ethereum, polygon, arbitrum, optimism |
| "timed out after 300s" | MCP call took too long | Retry once; the server may be under load |
| "403" or "not allowlisted" | Wallet not whitelisted | Tell user to whitelist address at https://arnstein.ch/flow.html |
npm install from repo root. Copy .env.example to .env.APTOS_WALLET_PATH, EVM_WALLET_PATH or EVM_PRIVATE_KEY).create_aptos_wallet, create_evm_wallet) or CLI (node src/setup-aptos.js, node src/setup.js). Fund and whitelist all addresses at https://arnstein.ch/flow.html.| Task | Command |
|------|--------|
| Generate Aptos wallet | npm run setup:aptos |
| Generate EVM wallet | npm run setup |
| Show addresses for whitelist | npm run addresses |
| Credit Aptos (devnet) | npm run credit:aptos (set APTOS_FAUCET_NETWORK=devnet) |
| EVM balance | npm run balance -- <chain> |
| Transfer ETH/tokens | npm run transfer -- <chain> <to> <amount> [tokenAddress] |
| Swap tokens (Odos) | npm run swap -- <chain> <fromToken> <toToken> <amount> |
| Run skill demo | npx cornerstone-agent "Run a 30-day prediction for AAPL" |
| Attest Aptos wallet | npm run attest:aptos |
| Attest EVM wallet | npm run attest:evm |
Source: FinTechTonic/autonomous-agent
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/snapshot"
curl -s "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/contract"
curl -s "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T05:54:02.592Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Fintechtonic",
"href": "https://github.com/FinTechTonic/autonomous-agent",
"sourceUrl": "https://github.com/FinTechTonic/autonomous-agent",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "4 GitHub stars",
"href": "https://github.com/FinTechTonic/autonomous-agent",
"sourceUrl": "https://github.com/FinTechTonic/autonomous-agent",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/fintechtonic-autonomous-agent-2/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to autonomous-agent and adjacent AI workflows.