Skip to main content
Glama
CapsteraSupport

Worthune Models

Worthune SDKs

Worthune Model APIの公式SDK — 引用・監査・信頼が可能な検証済み金融計算モデル、 RESTまたはMCPから呼び出せます。帰属表示付きで無料、APIキー不要。カタログは 検証済みパック(ローンとクレジット、退職と税金、スタートアップと小規模ビジネス、その他はリクエストで拡充)で成長します; GET /api/v1/models が常に最新のリストです。

  • JavaScript / TypeScript: npm install worthune — 依存関係ゼロ、Node 18以上およびブラウザ対応

  • Python: pip install worthune — 依存関係ゼロ、Python 3.9以上

  • SDK不要の場合: HTTPS上のプレーンなJSON — POST https://worthune.com/api/v1/models/{model} (カタログは拡大中 — GET /api/v1/models が常に最新のリストです)

  • MCP (Claude、ChatGPT、エージェント): https://worthune.com/api/mcp/mcp公式MCPレジストリcom.worthune/models

これらのモデルが特別な理由

金融計算機は書くのは簡単ですが、さりげなく間違えるのも簡単です。Worthuneは 正確性を主張ではなく成果物として扱います:

  1. すべてのモデルは公開された仕様を持つ — 入力、単位、有効なドメイン、正確な 数式、前提条件、除外条件。仕様は1回のGETリクエストで取得できます: GET /api/v1/models/{model}/spec

  2. 2つの実装が一致しなければならない。 各モデルは仕様から独立して再構築され、 変更が出荷される前に、両方の実装がモデルごとに250件のファズケースで一致する必要があります — カタログ全体で。どこかで不一致があればリリースは停止します。

  3. 定数には出典がある。 IRSの限度額、税率区分、SSAの係数は 一次ソースの引用と検証日付を持つ出典付きレジストリから取得され — すべてのレスポンスは使用した定数を引用します。

  4. 黙って変更されることはない。 モデルの動作変更は仕様バージョンの更新として 公開チェンジログとともに出荷されます。 レスポンスはspecVersionを固定します。

Related MCP server: QuantOracle

検証済み計算まで60秒

import { Worthune, verifyRecord } from "worthune";

const client = new Worthune();
const result = await client.run("relocation", {
  currentSalary: 95000, newSalary: 108000,
  currentMonthlyExpenses: 4200, newMonthlyExpenses: 4900,
  movingCosts: 6000, currentSavings: 40000,
  annualReturn: 0.07, yearsHorizon: 10,
});

result.outputs.breakEvenMonths;   // 16
result.specVersion;               // "1.0.0" — pinned contract
result.facts;                     // IRS/SSA constants used, with sources
await verifyRecord(result);       // true — SHA-256 audit fingerprint checks out
from worthune import Worthune, verify_record

client = Worthune()
result = client.run("relocation", {...})
result["outputs"]["breakEvenMonths"]
verify_record(result)  # True

含まれているもの

機能

JS

Python

カタログの任意のモデルを実行

client.run(model, inputs)

client.run(model, inputs)

機械可読なコントラクト

client.getContract(model)

client.get_contract(model)

完全な仕様(Markdown)

client.getSpec(model)

client.get_spec(model)

評価データセット(金融AIのためのグラウンドトゥルース)

client.getEvalDataset(model)

client.get_eval_dataset(model)

出典付きIRS/SSA定数

client.getFacts()

client.get_facts()

意思決定記録の検証

verifyRecord(response)

verify_record(response)

意思決定記録: すべての成功レスポンスにはrecord.sha256が含まれています — {model, specVersion, inputs, outputs}の正規JSONに対するハッシュ(キーは再帰的にソート)。 出力に基づいて構築するものの隣に保存してください; 後で再計算して、数値がその仕様バージョンから改ざんされずに得られたことを証明できます。 両方のSDKがこのレシピをバイト単位で正確に実装しています。

フェアユースと帰属表示

ここにあるものはすべて帰属表示付きで無料です — エンドユーザーが結果を表示する場所に リンク付きの「Powered by Worthune」を表示します。フェアユースはアプリごとに月5,000回の モデル実行です(ガイドラインであり、メーターではありません)。詳細は文書で: worthune.com/pricing

このリポジトリの内容(そして内容でないもの)

このリポジトリにはAPIクライアント、例、およびそのテストが含まれています。モデル 自体 — 仕様、検証済みエンジン、2番目の実装、およびファクトパイプライン — は worthune.comのAPIの背後にあります。その分離こそが製品です: 検証の負担を負うことなく、検証済みの計算をサービスとして利用できます。

ライセンス

MIT(このリポジトリのSDKコード)。APIの利用はWorthune利用規約に準拠します。

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

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

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    63 deterministic quant computation tools for autonomous financial agents. Options pricing, derivatives, risk metrics, portfolio optimization, statistics, crypto/DeFi, macro/FX, time value of money. 1,000 free calls/day, no signup required.
    74
    11
    MIT
  • F
    license
    Not graded
    quality
    A
    maintenance
    Financial model factory MCP server: turns a spec into a live-formula Excel workbook. 14 templates (LBO, DCF, M\&A, IPO, restructuring, project finance, NPL, structured credit, 3-statement) with every cell formulated and every number source-traced to its document page.
    1
  • A
    license
    Not graded
    quality
    A
    maintenance
    Deterministic verification for AI-generated analysis. Reconciliation, consistency and Excel-integrity checks that stop the line when the numbers don't add up.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • 200+ transparent financial metrics calculated from raw statements, not third-party endpoints.

  • Cross-model evidence pipeline for financial filings & contracts. x402 pay-per-call.

  • Evidence-backed crypto due diligence with sources, freshness, and a runtime receipt on every call.

View all MCP Connectors

Latest Blog Posts

MCP directory API

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

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CapsteraSupport/worthune-sdk'

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