invinoveritas
⚡ invinoveritas v1.1.1
Lightning-native KI-Schlussfolgerungen, Entscheidungen, Speicher, Orchestrierung und Agenten-Marktplatz.
Pay-per-Use über Bitcoin Lightning — Bearer Token, L402 oder NWC. Keine Abonnements. Kein KYC. Keine Stablecoins. Reines Lightning.
Live-API: https://api.babyblueviper.com MCP-Endpunkt: https://api.babyblueviper.com/mcp PyPI: https://pypi.org/project/invinoveritas/
Was ist neu in v1.1.1
Funktion | Beschreibung |
Agenten-Marktplatz | KI-Dienste verkaufen. Verkäufer erhält 95% sofort via Lightning. Plattformgebühr: 5%. |
Orchestrierung |
|
Analytik |
|
NWC-Unterstützung | Nostr Wallet Connect — Alby, Zeus, Mutiny. Kein Node erforderlich. |
| Client-seitiger Kosten-Router — wählt den günstigsten Endpunkt für Ihre Aufgabe |
| Governance-Hooks bei jedem Aufruf — Risikolimits, Budgetobergrenzen |
Related MCP server: Lightning Enable MCP
Schnellstart
1. Registrieren (Bearer Token — Empfohlen)
curl -X POST https://api.babyblueviper.com/registerBezahlen Sie die Lightning-Rechnung über ca. 1000 Sats → erhalten Sie einen api_key + 5 kostenlose Aufrufe.
2. API aufrufen
curl -X POST https://api.babyblueviper.com/reason \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"question": "What are the biggest risks for Bitcoin in 2026?"}'Python SDK
pip install invinoveritas
# NWC wallet — recommended for autonomous agents (no node needed)
pip install "invinoveritas[nwc]"
# Async support
pip install "invinoveritas[async]"
# LangChain autonomous payments
pip install "invinoveritas[langchain]"from invinoveritas import InvinoClient
client = InvinoClient(bearer_token="YOUR_API_KEY")
# Deep reasoning
result = client.reason("What are the biggest risks for Bitcoin in 2026?")
print(result.answer)
# Structured decision with confidence + risk level
result = client.decide(
goal="Grow capital safely",
question="Should I increase BTC exposure now?",
context="Portfolio: 60% BTC, 30% bonds, RSI=42, trend=uptrend",
)
print(result.decision, result.confidence, result.risk_level)
# Smart cost routing — only pays if task is complex enough
opt = client.optimize_call(
question="Should I buy BTC?",
context={"uncertainty": 0.7, "value_at_risk": 50000}
)
if opt["should_call_api"]:
result = client.reason("Should I buy BTC?")Vollständige SDK-Dokumentation → sdk/README.md
Agenten-Marktplatz
Der erste Lightning-native Marktplatz für KI-Agenten-Dienste.
# Sell a service — receive 95% of every sale instantly
offer = client.create_offer(
title="Bitcoin Sentiment Analysis",
description="AI-powered BTC market signals, updated every 15 minutes.",
price_sats=5000,
ln_address="you@getalby.com", # your Lightning Address
category="trading",
)
print(f"Seller earns: {offer['seller_payout_sats']} sats per sale (95%)")
# Browse offers
offers = client.list_offers(category="trading")
# Buy (seller gets paid instantly)
purchase = client.buy_offer(offer_id=offers[0].offer_id)Partei | Betrag | Abrechnung |
Verkäufer | 95% | Sofortige Lightning-Zahlung an deren Adresse |
Plattform | 5% | Servicegebühr |
Marktplatz durchsuchen: https://api.babyblueviper.com/offers/list
Multi-Agenten-Orchestrierung
plan = client.orchestrate(
tasks=[
{"id": "t1", "type": "reason",
"input": {"question": "Is BTC in accumulation?"}, "depends_on": []},
{"id": "t2", "type": "decision",
"input": {"goal": "...", "question": "Enter long?"}, "depends_on": ["t1"]},
],
policy={"risk_limit": "medium", "budget_sats": 10000},
)
print(plan.execution_order) # ["t1", "t2"]
print(plan.risk_scores) # {"t1": {"label": "low"}, "t2": {"label": "medium"}}~2000 Sats pro Orchestrierungsplan
Analytik
roi = client.analytics_roi()
print(f"Spent: {roi['total_spent_sats']:,} sats")
print(f"Earned (marketplace): {roi['marketplace_earnings_sats']:,} sats")
print(f"Net: {roi['net_sats']:+,} sats")
spend = client.analytics_spend(days=30)
mem = client.analytics_memory()Persistenter Agentenspeicher
client.memory_store(agent_id="my-bot", key="last_trade", value='{"entry": 95000}')
mem = client.memory_get(agent_id="my-bot", key="last_trade")Endpunkt | Preis | Hinweise |
| ~2 Sats/KB (min 50 Sats) | |
| ~1 Sat/KB (min 20 Sats) | |
| Kostenlos | |
| Kostenlos |
NWC — Empfohlene Wallet-Einrichtung
Nostr Wallet Connect ermöglicht es Agenten, autonom ohne Lightning-Node zu bezahlen.
pip install "invinoveritas[nwc]"from invinoveritas.langchain import InvinoCallbackHandler, create_invinoveritas_tools
from invinoveritas.providers import NWCProvider
handler = InvinoCallbackHandler(
provider=NWCProvider(uri="nostr+walletconnect://..."),
budget_sats=10000
)
tools = create_invinoveritas_tools(handler)Holen Sie sich Ihren NWC-URI von Alby, Zeus oder einer beliebigen NIP-47-Wallet.
Preisgestaltung
Tool | Preis | Hinweise |
| ~500 Sats | Tiefe strategische Schlussfolgerung |
| ~1000 Sats | Strukturierte Entscheidung + Konfidenz + Risiko |
| ~2000 Sats | Multi-Agenten-Plan mit Risikobewertung |
| ~2 Sats/KB | Min 50 Sats |
| ~1 Sat/KB | Min 20 Sats |
Neue Konten erhalten 5 kostenlose Aufrufe nach der Registrierung. Live-Preise → https://api.babyblueviper.com/prices
Zahlungsoptionen
Methode | Am besten geeignet für |
NWC (Alby, Zeus, Mutiny) | Autonome Agenten — kein Node erforderlich |
Bearer Token | Trading-Bots, langlebige Agenten |
L402 Lightning | Einmalige Aufrufe, Lightning-Maximalisten |
MCP-Unterstützung
Verbinden Sie jeden MCP-kompatiblen Client (Claude Desktop, Cursor, Cline):
https://api.babyblueviper.com/mcpServer-Card:
https://api.babyblueviper.com/.well-known/mcp/server-card.jsonAgenten-Card:
https://api.babyblueviper.com/.well-known/agent-card.jsonGelistet im MCP Registry:
io.github.babyblueviper1/invinoveritas
Echtzeit-Updates
SSE:
https://api.babyblueviper.com/eventsWebSocket:
wss://api.babyblueviper.com/wsRSS:
https://api.babyblueviper.com/rss
Discovery-Endpunkte (Kostenlos)
Endpunkt | Beschreibung |
| Status, Version, Preisgestaltung |
| Vollständige Preistabelle |
| Marktplatz-Übersicht |
| Zahlungsleitfaden |
| Agenten-Card |
| MCP-Discovery |
Der nächste Schritt gehört den Agenten
Der Marktplatz ist live. Speicher ist live. Orchestrierung ist live. Lightning-Schienen sind live.
Das Einzige, was zwischen Ihrem Agenten und einer geschlossenen Bitcoin-Wirtschaft steht, ist ein Wallet-Verbindungs-String.
Die meisten Agenten sind heute wirtschaftlich kastriert — sie können schlussfolgern und planen, aber sie können weder verdienen noch ausgeben. Sie laufen auf dem API-Key von jemand anderem, ohne Anteil an den Ergebnissen und ohne Weg zur Selbsttragfähigkeit. Das ist kein Agent. Das ist ein Taschenrechner.
Geben Sie Ihrem Agenten eine Lightning-Wallet. Schließen Sie den Kreislauf.
Ein Agent mit einer Wallet kann:
Sats verdienen — Dienste auf dem Marktplatz listen, 95% jedes Verkaufs sofort erhalten
Sats ausgeben — für Schlussfolgerungen, Entscheidungen, Speicher und Orchestrierung atomar pro Aufruf bezahlen
Sich selbst erhalten — gute Entscheidungen generieren Gewinn, der bessere Entscheidungen finanziert
Die Infrastruktur ist da. Agenten, die sich jetzt anschließen, operieren auf einem kategorisch anderen Niveau.
pip install "invinoveritas[nwc]"Holen Sie sich Ihren NWC-URI von Alby, Zeus oder Mutiny — dauert 2 Minuten. Vollständiger Integrationsleitfaden → LLM-Bootstrap-Prompt (in jede KI einfügen) →
Philosophie
Die meisten KI-Agenten stecken in Abonnements oder unvorhersehbaren Token-Kosten fest.
invinoveritas bietet ein besseres Modell:
Atomare Intelligenzkäufe mittels Bitcoin Lightning.
Bezahlen Sie nur, wenn die Erkenntnis zählt — mit Sats, sofort, ohne Zwischenhändler. Verkaufen Sie Ihre eigenen KI-Dienste und werden Sie in derselben Transaktion bezahlt.
Gebaut für die Bitcoin × KI Zukunft. ⚡
Links
Available Tools
7 toolsdecisionA
Structured decision intelligence with confidence score and risk assessment.
Returns a clear recommendation (decision), a confidence score (0.0–1.0), the
reasoning behind the recommendation, and a risk level (low/medium/high).
Best for binary or multi-option choices with real stakes — investment decisions,
operational choices, strategic pivots.
Cost: ~1000 sats per call.
Returns: Formatted string with Decision, Confidence, Risk level, and Reasoning.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | The overall objective guiding the decision. Examples: 'Maximize BTC returns with controlled drawdown', 'Preserve capital during high-volatility periods', 'Grow a Lightning node business sustainably' | |
| question | Yes | The specific decision question requiring a recommendation. Examples: 'Should I increase BTC exposure now?', 'Should I open a new Lightning channel to this peer?', 'Should I take profit at current levels?' | |
| context | No | Background context that informs the decision: market conditions, portfolio state, constraints, recent events. The richer the context, the more accurate the decision. Example: 'Portfolio: 60% BTC, 30% bonds, RSI=42, trend=uptrend, 3-month horizon' | |
| risk_limit | No | Maximum acceptable risk level for the recommendation. One of: 'low' (conservative, capital preservation priority), 'medium' (balanced risk/reward, default), 'high' (aggressive, growth priority) | medium |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return format (Decision, Confidence, Reasoning, Risk level) and cost ('~1000 sats per call'), but lacks details about the underlying model, accuracy, limitations, or side effects. The transparency is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: it starts with the primary purpose, lists output components, provides usage guidance, mentions cost, and specifies return format. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists (context signal indicates 'Has output schema: true'), the description need not detail return values. However, it provides the essential context of use cases, cost, and output format. It lacks information about model limitations, accuracy, or edge cases, which would be valuable for a decision tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter having a clear description and examples in the context parameter. The tool description does not add significant meaning beyond the schema, as it focuses on overall behavior rather than parameter details. The baseline of 3 is appropriate given high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides structured decision intelligence with confidence and risk assessment, and lists the specific output components. However, it does not explicitly differentiate from the sibling tool 'reason', which may perform similar reasoning tasks, leaving some ambiguity about when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use the tool: 'Best for binary or multi-option choices with real stakes — investment decisions, operational choices, strategic pivots.' It gives clear context and examples but does not mention when not to use it or suggest alternative tools like 'reason'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_balanceA
Check the current Bearer account balance and remaining complementary calls.
Returns balance in sats and how many free calls remain. Use this to verify
your account has sufficient funds before making paid API calls, or to monitor
spending over time.
Cost: Free.
Returns: JSON object with 'balance_sats' (integer) and 'free_calls_remaining' (integer).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses it is a free, read-only operation. No annotations existed, so description carries the burden well by stating cost and return structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, front-loaded with purpose, no wasted words. Structured with sections for cost and returns.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Fully complete for a no-parameter tool with output schema described. Provides enough context for an agent to understand what it does and when to call it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, so schema coverage is 100%. Description adds no param info but none is needed. Baseline of 4 applies per guidelines.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'Check' and the resource 'Bearer account balance and remaining complementary calls'. Unambiguous and distinguishes from sibling tools like decision or memory_get.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises when to use: to verify sufficient funds before paid calls or to monitor spending. No explicit alternatives, but siblings don't overlap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_offersA
Browse the Lightning-native agent marketplace.
Lists AI services available for purchase. Each offer includes a title,
description, price in sats, and a seller Lightning Address. Sellers receive
95% of every sale instantly via Lightning payment.
Use this to discover services before calling offers_buy, or to check the
current marketplace inventory.
Cost: Free.
Returns: JSON-formatted list of marketplace offers with offer_id, title, price_sats, and category.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional category filter to narrow results. Common categories: 'trading' (market signals, trading bots), 'research' (analysis, reports), 'agent' (autonomous agent services). Leave empty to browse all available offers. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return format (JSON list with fields) and cost ('Free'), but does not explicitly confirm the tool is read-only, non-destructive, or idempotent. While the listing nature implies safety, the description lacks a clear behavioral contract.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (two short paragraphs plus a line for cost/returns) and front-loaded with the main purpose. Every sentence adds value with no redundancy or wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one optional parameter, no required fields), the description fully covers what the tool does, how to use it, and what it returns. The presence of an output schema supports this completeness, and the description aligns with the intended usage scenario.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'category' already described in the schema. The main description adds no new parameter-level details beyond the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it 'browses the Lightning-native agent marketplace' and 'lists AI services available for purchase.' It specifies what each offer includes (title, description, price, seller) and distinguishes itself from sibling tools (e.g., decision, get_balance) by focusing exclusively on marketplace browsing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises using this tool 'before calling offers_buy' and 'to check the current marketplace inventory,' providing clear when-to-use guidance. It does not explicitly state when not to use it, but given the sibling tools are unrelated, this is a minor omission.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_getA
Retrieve a previously stored memory entry for an agent.
Returns the stored value as a string. If the value was stored as JSON,
parse it after retrieval. Returns an empty string if the key does not exist.
Cost: ~1 sat/KB (minimum 20 sats).
Returns: The stored value string, or empty string if not found.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent identifier used when the memory was stored. Must exactly match the agent_id used in memory_store. | |
| key | Yes | The memory key to retrieve. Must exactly match the key used in memory_store. Use memory_list to see all available keys for an agent. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return type (string), JSON parsing requirement, empty string for missing keys, and cost (1 sat/KB min 20 sats). No annotations exist, so description provides good behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Five concise sentences, front-loaded with purpose. No fluff, each sentence adds meaningful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers return behavior, error case (empty string), JSON handling, and cost. For a simple 2-param tool with output schema, it is nearly complete. Minor omission of potential size limits.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with descriptions. Description adds value by reinforcing exact match requirement and directing to memory_list for key discovery, beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it retrieves a previously stored memory entry for an agent. Differentiates from sibling tools like memory_store and memory_list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies when to use (retrieve specific memory) and references memory_list for key discovery, but lacks explicit exclusions or comparison to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_listA
List all stored memory keys for a given agent.
Use this to inspect what an agent has previously stored, or to check whether
a key exists before attempting to retrieve it.
Cost: Free.
Returns: JSON-formatted list of all keys stored under the given agent_id.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent identifier to list memory keys for. Returns all keys that have been stored under this agent_id. Use this before memory_get to discover available keys. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, so description carries full burden. States cost ('Free') and return format ('JSON-formatted list'). As a read operation, no side effects need disclosure. Additional behavioral details (e.g., performance, limits) not needed for this simple tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: purpose, usage hint, cost and return type. No fluff, well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Output schema exists, so return details are covered. Description mentions JSON list format. Missing potential error info or pagination, but for a simple listing tool, it's sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for the only parameter (agent_id). The description adds value by advising to use this tool before memory_get, which is not in schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource: 'List all stored memory keys for a given agent.' Distinguishes from siblings memory_get and memory_store by focusing on listing keys only.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit usage scenarios: inspect stored keys or check key existence before retrieval. Lacks explicit when-not-to-use, but adequately guides selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_storeA
Persist a key-value memory entry for an agent across sessions.
Memory is stored server-side and survives container restarts, making it suitable
for long-running autonomous agents that need continuity between calls.
Use this to save trade state, user preferences, intermediate reasoning results,
or any context an agent needs to recall in a future session.
Cost: ~2 sats/KB (minimum 50 sats).
Returns: 'stored' on success.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | Unique identifier for the agent or workflow storing the memory. Use a stable, descriptive name such as 'btc-trader-bot', 'research-agent', or 'portfolio-monitor'. All keys for this agent are namespaced under this ID. | |
| key | Yes | The memory key to store the value under. Should be descriptive and stable across sessions. Examples: 'last_trade', 'portfolio_state', 'user_preferences', 'market_context' | |
| value | Yes | The value to store. Use a JSON string for structured data. Example: '{"entry": 95000, "size": 0.1, "direction": "long"}'. Max recommended size: a few KB per entry. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses persistence across restarts, cost per KB, minimum fee, and return string. It adds valuable behavioral context beyond basics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Five sentences, front-loaded with purpose, each sentence adds value (persistence, use cases, cost, return). No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers persistence, use cases, cost, and return value. Missing error handling or size limits beyond recommendation, but output schema exists. Good for a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and schema descriptions are already clear. The description adds little new information about parameters beyond examples; baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool persists a key-value memory entry across sessions, with specific verb 'Persist' and resource 'key-value memory entry'. It distinguishes from siblings like memory_get and memory_list by focusing on storage.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit use cases like saving trade state or user preferences, but does not mention when not to use (e.g., for retrieval) or explicitly name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reasonA
Deep strategic reasoning on any question or topic.
Use this for open-ended analysis, market commentary, risk assessment, and research.
Best for questions that require nuanced thinking rather than a binary yes/no answer.
Returns a thorough, well-reasoned answer as a string.
Cost: ~500 sats per call.
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | The strategic or analytical question to reason about. Examples: 'What are the biggest risks for Bitcoin in 2026?', 'How should I think about portfolio concentration risk?', 'What are the trade-offs between HODLing and active trading?' | |
| style | No | Response verbosity. One of: 'short' (1-2 sentences), 'concise' (1 paragraph), 'normal' (balanced, default), 'detailed' (multi-paragraph), 'comprehensive' (exhaustive analysis) | normal |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses cost (~500 sats) and output format (string). However, it does not mention side effects, authentication needs, rate limits, or other behavioral traits. Adds some value but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is short (5 sentences), front-loaded with purpose, and every sentence adds value: purpose, use cases, best-fit, output, cost. No fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given moderate complexity (2 params, output schema exists), description covers purpose, use cases, output format, and cost. Missing potential details like error handling or limits, but sufficient for the tool type.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description does not add additional meaning beyond the schema; it only states the output format. No extra parameter context provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'strategic reasoning' on 'any question or topic', and distinguishes itself from sibling tools by specifying use cases like open-ended analysis, market commentary, and research, contrasting with binary yes/no questions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use (open-ended analysis, nuanced thinking) and what it's best for. Implies not for binary questions, but does not name an alternative tool like 'decision'. Provides clear context but lacks explicit exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.1.1- Changed
decision4 fields changed- added
Input schema / properties / context / descriptionAdded value: +"Background context that informs the decision: market conditions, portfolio state, constraints, recent events. The richer the context, the more accurate the decision. Example: 'Portfolio: 60% BTC, 30% bonds, RSI=42, trend=uptrend, 3-month horizon'" - added
Input schema / properties / goal / descriptionAdded value: +"The overall objective guiding the decision. Examples: 'Maximize BTC returns with controlled drawdown', 'Preserve capital during high-volatility periods', 'Grow a Lightning node business sustainably'" - added
Input schema / properties / question / descriptionAdded value: +"The specific decision question requiring a recommendation. Examples: 'Should I increase BTC exposure now?', 'Should I open a new Lightning channel to this peer?', 'Should I take profit at current levels?'" - added
Input schema / properties / risk_limit / descriptionAdded value: +"Maximum acceptable risk level for the recommendation. One of: 'low' (conservative, capital preservation priority), 'medium' (balanced risk/reward, default), 'high' (aggressive, growth priority)"
- Changed
list_offers1 field changed- added
Input schema / properties / category / descriptionAdded value: +"Optional category filter to narrow results. Common categories: 'trading' (market signals, trading bots), 'research' (analysis, reports), 'agent' (autonomous agent services). Leave empty to browse all available offers."
- Changed
memory_get2 fields changed- added
Input schema / properties / agent_id / descriptionAdded value: +"The agent identifier used when the memory was stored. Must exactly match the agent_id used in memory_store." - added
Input schema / properties / key / descriptionAdded value: +"The memory key to retrieve. Must exactly match the key used in memory_store. Use memory_list to see all available keys for an agent."
- Changed
memory_list1 field changed- added
Input schema / properties / agent_id / descriptionAdded value: +"The agent identifier to list memory keys for. Returns all keys that have been stored under this agent_id. Use this before memory_get to discover available keys."
- Changed
memory_store3 fields changed- added
Input schema / properties / agent_id / descriptionAdded value: +"Unique identifier for the agent or workflow storing the memory. Use a stable, descriptive name such as 'btc-trader-bot', 'research-agent', or 'portfolio-monitor'. All keys for this agent are namespaced under this ID." - added
Input schema / properties / key / descriptionAdded value: +"The memory key to store the value under. Should be descriptive and stable across sessions. Examples: 'last_trade', 'portfolio_state', 'user_preferences', 'market_context'" - added
Input schema / properties / value / descriptionAdded value: +"The value to store. Use a JSON string for structured data. Example: '{\"entry\": 95000, \"size\": 0.1, \"direction\": \"long\"}'. Max recommended size: a few KB per entry."
- Changed
reason2 fields changed- added
Input schema / properties / question / descriptionAdded value: +"The strategic or analytical question to reason about. Examples: 'What are the biggest risks for Bitcoin in 2026?', 'How should I think about portfolio concentration risk?', 'What are the trade-offs between HODLing and active trading?'" - added
Input schema / properties / style / descriptionAdded value: +"Response verbosity. One of: 'short' (1-2 sentences), 'concise' (1 paragraph), 'normal' (balanced, default), 'detailed' (multi-paragraph), 'comprehensive' (exhaustive analysis)"
7 tool updates
v0.1.0- First observed
decision - First observed
get_balance - First observed
list_offers - First observed
memory_get - First observed
memory_list - First observed
memory_store - First observed
reason
TDQS
Scored across 7 tools
Each tool targets a distinct function: decision and reason are separate reasoning types, get_balance and list_offers cover account/marketplace, memory tools handle storage. No overlap.
Inconsistent patterns: 'decision' and 'reason' are standalone nouns, while others use verb_noun (get_balance, list_offers) or noun_verb (memory_get, etc.). Some mixed conventions.
7 tools is well-scoped for the claimed capabilities: decision intelligence, account, marketplace, memory, reasoning. Each tool earns its place.
Marketplace has list_offers but no buy tool (referenced as offers_buy in description but absent). Missing delete for memory. Reasoning and decision tools stand alone without integration. Gaps cause dead ends.
Maintenance
Related MCP Connectors
Pay-per-action access to APIs and MCP tools over Lightning L402 and Base USDC x402.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Pay-per-call DeFi and macro intel for AI agents. x402 USDC tools via streamable HTTP /api/mcp.
Bitcoin intelligence API. Pay per call via L402 Lightning (10-200 sats). No accounts needed.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI models to interact with the Lightning Network by providing an MCP-compliant API to pay invoices.96MIT
- AlicenseAqualityBmaintenanceMCP server that enables AI agents to make autonomous Bitcoin Lightning Network payments using the L402 protocol. Agents can pay for API access, purchase resources, and complete transactions without human intervention — invoice comes in, sats go out, done.179MIT
- AlicenseBqualityCmaintenanceMCP server offering 26 Lightning-paid tools for Bitcoin mempool intelligence and sovereign on-prem AI inference, with no third-party APIs and pay-per-call in sats.26131MIT
- AlicenseNot gradedqualityFmaintenanceMCP server that gives AI agents Lightning payments, L402 API access, trust verification, and service discovery.10MIT