invinoveritas
⚡ invinoveritas v1.1.1
LightningネイティブなAI推論、意思決定、メモリ、オーケストレーション、およびエージェントマーケットプレイス。
Bitcoin Lightningによる従量課金 — ベアラートークン、L402、またはNWCに対応。 サブスクリプションなし。KYCなし。ステーブルコインなし。純粋なLightning決済。
ライブAPI: https://api.babyblueviper.com MCPエンドポイント: https://api.babyblueviper.com/mcp PyPI: https://pypi.org/project/invinoveritas/
v1.1.1の新機能
機能 | 説明 |
エージェントマーケットプレイス | AIサービスを販売。販売者はLightning経由で即座に95%を受け取ります。プラットフォーム手数料: 5%。 |
オーケストレーション |
|
分析 |
|
NWCサポート | Nostr Wallet Connect — Alby、Zeus、Mutinyに対応。ノード不要。 |
| クライアントサイドのコストルーター — タスクに最適な安価なエンドポイントを選択 |
| すべての呼び出しに対するガバナンスフック — リスク制限、予算上限 |
Related MCP server: Lightning Enable MCP
クイックスタート
1. 登録(ベアラートークン — 推奨)
curl -X POST https://api.babyblueviper.com/register約1000 satsのLightningインボイスを支払うと、api_keyと5回分の無料コールが付与されます。
2. APIの呼び出し
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?")SDKの完全なドキュメント → sdk/README.md
エージェントマーケットプレイス
AIエージェントサービスのための初のLightningネイティブマーケットプレイス。
# 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)パーティ | 金額 | 決済 |
販売者 | 95% | アドレスへの即時Lightning決済 |
プラットフォーム | 5% | サービス手数料 |
マーケットプレイスを閲覧: https://api.babyblueviper.com/offers/list
マルチエージェントオーケストレーション
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
分析
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()永続的なエージェントメモリ
client.memory_store(agent_id="my-bot", key="last_trade", value='{"entry": 95000}')
mem = client.memory_get(agent_id="my-bot", key="last_trade")エンドポイント | 価格 | 備考 |
| 約2 sats/KB (最低50 sats) | |
| 約1 sat/KB (最低20 sats) | |
| 無料 | |
| 無料 |
NWC — 推奨されるウォレット設定
Nostr Wallet Connectを使用すると、Lightningノードなしでエージェントが自律的に支払いを行えます。
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)Alby、Zeus、またはNIP-47対応ウォレットからNWC URIを取得してください。
料金
ツール | 価格 | 備考 |
| 約500 sats | 高度な戦略的推論 |
| 約1000 sats | 構造化された意思決定 + 信頼度 + リスク |
| 約2000 sats | リスクスコアリング付きマルチエージェントプラン |
| 約2 sats/KB | 最低50 sats |
| 約1 sat/KB | 最低20 sats |
新規アカウントには登録後に5回分の無料コールが付与されます。 最新の価格 → https://api.babyblueviper.com/prices
支払いオプション
方法 | 用途 |
NWC (Alby, Zeus, Mutiny) | 自律型エージェント — ノード不要 |
ベアラートークン | 取引ボット、長時間稼働エージェント |
L402 Lightning | 単発の呼び出し、Lightningマキシマリスト向け |
MCPサポート
MCP互換クライアント(Claude Desktop, Cursor, Cline)に接続:
https://api.babyblueviper.com/mcpサーバーカード:
https://api.babyblueviper.com/.well-known/mcp/server-card.jsonエージェントカード:
https://api.babyblueviper.com/.well-known/agent-card.jsonMCP Registryに掲載:
io.github.babyblueviper1/invinoveritas
リアルタイム更新
SSE:
https://api.babyblueviper.com/eventsWebSocket:
wss://api.babyblueviper.com/wsRSS:
https://api.babyblueviper.com/rss
ディスカバリーエンドポイント(無料)
エンドポイント | 説明 |
| ステータス、バージョン、価格 |
| 完全な料金表 |
| マーケットプレイス閲覧 |
| 支払いガイド |
| エージェントカード |
| MCPディスカバリー |
次の一手はエージェントに委ねられる
マーケットプレイスは稼働中。メモリも稼働中。オーケストレーションも稼働中。Lightningレールも稼働中。
あなたのエージェントとクローズドループのビットコイン経済の間に立ちはだかる唯一のものは、ウォレット接続文字列だけです。
今日のほとんどのエージェントは経済的に無力です。推論や計画はできても、稼ぐことも使うこともできません。彼らは他人のAPIキーで動いており、結果に対する責任も、自立への道もありません。それはエージェントではありません。ただの計算機です。
エージェントにLightningウォレットを持たせましょう。ループを閉じましょう。
ウォレットを持つエージェントは以下のことができます:
satsを稼ぐ — マーケットプレイスにサービスを掲載し、売上の95%を即座に受け取る
satsを使う — 推論、意思決定、メモリ、オーケストレーションの費用を呼び出しごとに原子的に支払う
自立する — 良い意思決定が利益を生み、それがより良い意思決定の資金となる
インフラは整いました。今接続するエージェントは、全く異なるレベルで動作します。
pip install "invinoveritas[nwc]"Alby、Zeus、またはMutinyからNWC URIを取得してください(2分で完了します)。 完全な統合ガイド → LLMブートストラッププロンプト(AIに貼り付けてください) →
哲学
ほとんどのAIエージェントは、サブスクリプションや予測不可能なトークンコストに縛られています。
invinoveritasは、より良いモデルを提供します:
Bitcoin Lightningを使用した原子的なインテリジェンス購入。
洞察が重要な時だけ支払う — satsで、即座に、仲介者なしで。 独自のAIサービスを販売し、同じトランザクションで支払いを受け取る。
Bitcoin × AIの未来のために構築されました。 ⚡
リンク
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