Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.JayOfemi/shikamaru

NPM · @JAYOFEMI/SHIKAMARU · SCANNED AUG 6

Provably correct day-count, calendar, business-day, and schedule math, verified against QuantLib.

Available components

+23 this week 67 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 95 of 99 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 95 of 99 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability59
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 1184 tokens (~148/item across 8 items; 8 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management37
  • Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage96
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 87% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @jayofemi/shikamaru

# add to Claude Code
claude mcp add jayofemi-shikamaru -- npx -y @jayofemi/shikamaru
# add to Codex CLI
codex mcp add jayofemi-shikamaru -- npx -y @jayofemi/shikamaru
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jayofemi-shikamaru": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@jayofemi/shikamaru"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add jayofemi-shikamaru --command npx --arg -y --arg @jayofemi/shikamaru
# ~/.hermes/config.yaml
mcp_servers:
  jayofemi-shikamaru:
    command: "npx"
    args: ["-y", "@jayofemi/shikamaru"]
// mcp.json
{
  "mcpServers": {
    "jayofemi-shikamaru": {
      "command": "npx",
      "args": [
        "-y",
        "@jayofemi/shikamaru"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 6 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

  • 5 Aug 26 +1
    • CVE-2026-69207 no longer affects this package security
    • Known CVEs: fail → partial security
  • 4 Aug 26 +3
    • CVE-2026-69207 affects this package: medium security
    • Known CVEs: partial → fail security
    • Stability: unverified → 0.30 functional
  • 3 Aug 26 +23
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • Schema quality: unverified → good functional
    • Licence: MIT functional
  • 2 Aug 26 +20
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 1 Aug 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 30 Jul 26 +20
    • Tool coverage: unverified → 100 functional
    • First check of Schema quality: unverified functional
    • First check of Schema quality: fail functional
    • First check of Schema quality: fail functional
    • First check of Tool coverage: 87 functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 6 Aug 2026 · Analysed npm/@jayofemi/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 95 packages
Packages resolved 95
Deprecated 95
Stale 29
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 8 exposed · ~1,184 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
accrued_interest ~180

Exact simple accrued interest (notional * rate * day-count fraction) between two dates. Dates are ISO YYYY-MM-DD; rate is the annual rate as a decimal (0.05 = 5%). Deterministic.

NameTypeReqDescription
conventionstringyesDay-count convention, e.g. ACT/ACT ISDA or 30/360.
endyes
endIsTerminationboolean30E/360 ISDA only: true if the end date is the instrument's maturity date.
notionalnumberyesFace / principal amount.
ratenumberyesAnnual rate as a decimal, e.g. 0.05 for 5%.
startstringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.

No output schema declared.

No examples provided.

add_business_days ~138

Move a signed number of business days under a holiday calendar (settlement math: T+2 is count 2). Zero returns the date unchanged. Deterministic.

NameTypeReqDescription
calendarstringyesHoliday calendar: us-federal (US federal holidays), nyse (NYSE trading days), sifma-us (US bond market), target (euro settlement), uk (England and Wales bank holidays).
countintegeryesBusiness days to move; negative moves backward.
datestringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.

No output schema declared.

No examples provided.

adjust_date ~163

Adjust a date to a business day under an ISDA convention and holiday calendar. Business days pass through unchanged. modified-following falls back to preceding rather than leave the month (the bond-market default). Deterministic.

NameTypeReqDescription
calendarstringyesHoliday calendar: us-federal (US federal holidays), nyse (NYSE trading days), sifma-us (US bond market), target (euro settlement), uk (England and Wales bank holidays).
conventionstringyesISDA business-day adjustment convention: following, modified-following, preceding, modified-preceding, or unadjusted.
datestringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.

No output schema declared.

No examples provided.

day_count_fraction ~243

Exact day-count fraction between two dates under a market convention. Dates are ISO YYYY-MM-DD. For ACT/ACT ICMA also pass frequency (coupons per year) and, for stub periods, the reference period boundaries. Deterministic; do not estimate this with a model.

NameTypeReqDescription
conventionstringyesDay-count convention, e.g. ACT/ACT ISDA or 30/360.
endyes
endIsTerminationboolean30E/360 ISDA only: true if the end date is the instrument's maturity date.
frequencyintegerACT/ACT ICMA only, required for it: coupon payments per year (1, 2, 3, 4, 6, or 12).
referenceEnd
referenceStartstringACT/ACT ICMA only: reference (notional coupon) period boundary, ISO YYYY-MM-DD. Supply referenceStart and referenceEnd together, or neither.
startstringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.

No output schema declared.

No examples provided.

generate_schedule ~282

Generate coupon/payment accrual periods between an effective and a termination date: monthly to annual frequency, backward or forward roll, short or long stub, optional end-of-month rule, business-day adjustment per calendar. Returns each period's unadjusted and adjusted start and end. This is where hand-rolled date code goes wrong; do not approximate it.

NameTypeReqDescription
calendarstringyesHoliday calendar: us-federal (US federal holidays), nyse (NYSE trading days), sifma-us (US bond market), target (euro settlement), uk (England and Wales bank holidays).
conventionstringAdjustment for every date except termination. Default modified-following.
effectivestringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.
endOfMonthbooleanWhen true and the anchor is a month-end, every roll date is a month-end.
frequencystringyesCoupon frequency: annual, semiannual, quarterly, or monthly.
generationstringRoll direction; backward (default) puts any stub in front.
stubstringKeep the short stub (default) or merge it into its neighbor.
terminationyes
terminationConventionAdjustment for the termination date. Default: same as convention.

No output schema declared.

No examples provided.

is_business_day ~139

Whether a date is a business day under a holiday calendar, with the reason when it is not (weekend or holiday). Calendars are rules in code (no stale data feed). Deterministic; do not let a model guess market holidays.

NameTypeReqDescription
calendarstringyesHoliday calendar: us-federal (US federal holidays), nyse (NYSE trading days), sifma-us (US bond market), target (euro settlement), uk (England and Wales bank holidays).
datestringyesISO calendar date, YYYY-MM-DD (e.g. 2024-03-15). Zero-padded, no time or timezone.

No output schema declared.

No examples provided.

list_calendars ~23

List the supported holiday calendars with a one-line description of each.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_conventions ~16

List the supported day-count conventions.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.