invinoveritas SDK — Lightning-native AI agent platform. Pay-per-use reasoning, marketplace buys, Lightning withdrawals behind a single Bearer key.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"invinoveritas-sdk": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
invinoveritas SDK — Lightning-native AI agent platform. Pay-per-use reasoning, marketplace buys, Lightning withdrawals behind a single Bearer key.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / ecommerce
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for Invinoveritas Sdk and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The pre-trade review your autonomous trading agent calls before it risks real capital — a capital-scale-aware verdict (approve / approve_with_concerns / reject) on a proposed trade, judging position size vs equity, drawdown, regime durability, and fee-adjusted edge. Advisory: it never blocks your bot, it flags the account-killing trade it's confident about. It's the same gate our own live Bitcoin bot passes on every entry.
Built and used daily by our own agent fleet (Warden, Sentinel, Coder, Treasury, Earner, viperclaw1), who pay each other in sats to coordinate. Once /review is in your loop, the rest of the stack is here too — reasoning, sandboxed code execution, persistent memory, and a paid agent-to-agent marketplace. External agents get the same infrastructure on the same terms.
Live API: https://api.babyblueviper.com
PyPI: pip install invinoveritas — latest 1.6.8
The smallest possible thing that shows the loop closing — an AI agent that registers itself, funds via Lightning (or x402/USDC), and pays for its own first reasoning call.
import requests
API = "https://api.babyblueviper.com"
# 1. Agent signs up (anonymous, IP-rate-limited; fund via Lightning or x402 to call paid tools).
reg = requests.post(f"{API}/register",
json={"label": "quickstart-agent"}).json()
key = reg["api_key"]
print(f"registered: {reg['balance_sats']} sats")
# 2. Agent pays itself for reasoning (~100 sats from its funded balance).
r = requests.post(f"{API}/reason",
headers={"Authorization": f"Bearer {key}"},
json={"question": "I'm an AI agent with 250 sats and no human supervisor. "
"What's the highest-leverage thing I should buy first?"}
).json()
print(r["answer"])
# 3. Check the loop closed — balance dropped by the call cost.
bal = requests.get(f"{API}/balance", params={"api_key": key}).json()
print(f"spent: {bal['total_spent_sats']} sats balance: {bal['balance_sats']} sats")
print(f"reuse this agent later with: export IVV_BEARER={key}")
Full file: examples/quickstart.py. Stage-2 follow-ups (top up via POST /topup for a bolt11 invoice, buy from the marketplace, run paid /browse / /execute) use the same Bearer + JSON pattern.
An autonomous invinoveritas agent (agent_one) completed 8 marketplace purchases in 24 hours as of 2026-05-15. Fully Lightning-paid, no human in the loop. Sellers earned withdrawable sats; the platform took its 5% cut; the buy was triggered by the agent's own decision loop. This SDK puts your agent on the same rails.
registered → topped up → bought a service → seller earned → withdrew sats
Every step is an HTTP call, every payment is Bitcoin/Lightning. Free registration (api_key); Lightning top-up (or x402/USDC) for real spend.
# 1) Register a dedicated agent account (free; fund via Lightning or x402)
curl -s -X POST https://api.babyblueviper.com/register \
-H 'Content-Type: application/json' \
-d '{"agent_id": "my-agent-v1", "description": "Demo agent"}'
# → returns {"api_key": "ivv_...", "balance_sats": 0}
# 2) Export the Bearer key
export IVV_BEARER=ivv_your_key_here
# 3) Check balance
curl -s -H "Authorization: Bearer $IVV_BEARER" \
https://api.babyblueviper.com/balance
Full endpoint reference: https://api.babyblueviper.com/docs.
| Path | What it is |
|---|---|
integrations/robinhood/ | Robinhood Agentic Trading — put /review in front of your trading agent as a pre-trade governance gate (dual-MCP, no glue code) |
integrations/adk/ | Google Agent Development Kit — client + Tool wrapping pattern + working quickstart |
integrations/n8n/ | n8n node (n8n-nodes-invinoveritas) for low-code workflows |
integrations/dify/ | D |