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.

Kalshi Kernel

OCI · GHCR.IO/COPYLEFTDEV/KALSHI-KERNEL:0.1.1 · SCANNED AUG 22

Unofficial safety-focused MCP server for Kalshi market data and explicitly authorized trading

40 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 Security0
  • Malware scan not yet available for this package.Unverified
  • Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency48
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (Apache-2.0).Pass
  • Actively maintained (last published 0 days ago).Pass
  • Publishes a security disclosure policy (SECURITY.md).Pass
Schema Quality & AI Usability76
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1034 tokens (~129/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 Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a current MCP spec version (2026-07-28).Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

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.

oci · ghcr.io/copyleftdev/kalshi-kernel:0.1.1

# add to Claude Code
claude mcp add copyleftdev-kalshi-kernel -- docker run --rm -i ghcr.io/copyleftdev/kalshi-kernel:0.1.1
# add to Codex CLI
codex mcp add copyleftdev-kalshi-kernel -- docker run --rm -i ghcr.io/copyleftdev/kalshi-kernel:0.1.1
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "copyleftdev-kalshi-kernel": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/copyleftdev/kalshi-kernel:0.1.1"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  copyleftdev-kalshi-kernel:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/copyleftdev/kalshi-kernel:0.1.1"]
// mcp.json
{
  "mcpServers": {
    "copyleftdev-kalshi-kernel": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/copyleftdev/kalshi-kernel:0.1.1"
      ]
    }
  }
}
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.

  • 22 Aug 26 40

    First indexed and scored.

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 22 Aug 2026 · Analysed oci/ghcr.io/copyleftdev/kalshi-kernel:0.1.1

Provenance No attestation

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

Result No attestation
Ecosystem oci
Reason No attestation published
MCP tools · 8 exposed · ~972 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
amend_order ~201

Amend the price and/or maximum fillable quantity of an existing live or paper order.

NameTypeReqDescription
client_order_idstringExisting client order identifier.
countstringyesDesired total maximum fillable quantity; pass the existing value when changing only price.
order_idstringyesExchange or paper order identifier.
pricestringyesDesired fixed-point dollar price; pass the existing value when changing only quantity.
productstringyesProduct family containing the order. Allowed values: event, perp.
sidestringyesExisting single-book order side required by the upstream amend operation. Allowed values: bid, ask.
subaccountintegerKalshi subaccount number; defaults to the primary account. Minimum: 0. Maximum: 63.
tickerstringyesExact market ticker used for routing and validation.
updated_client_order_idstringNew idempotency identifier for the amended order.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

cancel_order ~95

Cancel the remaining quantity of one live or paper order.

NameTypeReqDescription
order_idstringyesExchange or paper order identifier.
productstringyesProduct family containing the order. Allowed values: event, perp.
subaccountintegerKalshi subaccount number; defaults to the primary account. Minimum: 0. Maximum: 63.
tickerstringyesExact market ticker used for routing and validation.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

get_market ~54

Get the authoritative metadata and current status for one event-contract or perpetual market.

NameTypeReqDescription
productstringyesProduct family containing the ticker. Allowed values: event, perp.
tickerstringyesExact Kalshi market ticker.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

get_orderbook ~82

Get the locally reconciled order book for one market, including freshness and sequence metadata.

NameTypeReqDescription
depthintegerMaximum price levels to return on each side. Minimum: 1. Maximum: 100.
productstringyesProduct family containing the ticker. Allowed values: event, perp.
tickerstringyesExact Kalshi market ticker.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

get_portfolio ~75

Return balances, positions, resting orders, and recent fills from the selected live or paper ledger.

NameTypeReqDescription
productstringyesProduct family to report. Allowed values: event, perp.
subaccountintegerKalshi subaccount number; defaults to the primary account. Minimum: 0. Maximum: 63.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

kernel_status ~32

Report the immutable execution mode, backend readiness, market-data freshness, and enabled capabilities. Call this before any trading operation.

Input schema present but exposes no named parameters.

NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

place_order ~292

Validate and place one order through the configured execution backend. In paper mode this can only affect the local simulated ledger.

NameTypeReqDescription
cancel_order_on_pausebooleanCancel the resting order if exchange trading pauses.
client_order_idstringStable caller-provided idempotency identifier. The kernel generates one when omitted.
countstringyesFixed-point contract quantity encoded as a decimal string.
expiration_timeintegerOptional Unix time in seconds; only valid with good_till_canceled.
post_onlybooleanReject rather than immediately take liquidity.
pricestringyesFixed-point dollar price encoded as a decimal string.
productstringyesProduct family containing the market. Allowed values: event, perp.
reduce_onlybooleanPrevent the order from increasing exposure.
self_trade_prevention_typestringyesExchange self-trade prevention policy. Allowed values: taker_at_cross, maker.
sidestringyesSingle-book order side. Allowed values: bid, ask.
subaccountintegerKalshi subaccount number; defaults to the primary account. Minimum: 0. Maximum: 63.
tickerstringyesExact Kalshi market ticker.
time_in_forcestringyesExchange time-in-force policy. Allowed values: fill_or_kill, good_till_canceled, immediate_or_cancel.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.

search_markets ~141

Find event-contract or perpetual markets using structured filters. Returns compact summaries suitable for choosing a ticker.

NameTypeReqDescription
cursorstringPagination cursor returned by a previous call.
event_tickerstringRestrict event contracts to one event.
limitintegerMaximum number of markets to return. Minimum: 1. Maximum: 1000.
productstringyesProduct family to search. Allowed values: event, perp.
series_tickerstringRestrict event contracts to one series.
statusstringExchange market status filter.
tickersarrayExact market tickers to include.
NameTypeReqDescription
dataobject
errornull|object
modestringyes
okbooleanyes

No examples provided.