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

io.github.0x-devc/novai-mcp-server

NPM · NOVAI-MCP-SERVER · SCANNED AUG 3

Read-only MCP server for querying the live NOVAI blockchain over its public JSON-RPC endpoint.

Available components

+43 this week 69 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 Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1229 tokens (~102/item across 12 items; 12 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
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
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 · novai-mcp-server

# add to Claude Code
claude mcp add 0x-devc-novai-mcp-server -- npx -y novai-mcp-server
# add to Codex CLI
codex mcp add 0x-devc-novai-mcp-server -- npx -y novai-mcp-server
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "0x-devc-novai-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "novai-mcp-server"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add 0x-devc-novai-mcp-server --command npx --arg -y --arg novai-mcp-server
# ~/.hermes/config.yaml
mcp_servers:
  0x-devc-novai-mcp-server:
    command: "npx"
    args: ["-y", "novai-mcp-server"]
// mcp.json
{
  "mcpServers": {
    "0x-devc-novai-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "novai-mcp-server"
      ]
    }
  }
}
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.

  • 2 Aug 26 +33
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Licence: MIT functional
  • 31 Jul 26 +30
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −74
    • Known CVEs: partial → unverified security
    • Malware scan: pass → unverified security
    • Provenance: fail → unverified security
    • Install scripts: pass → unverified security
    • License: pass → unverified functional
    • Tool coverage: 100 → unverified functional
    • Dependency health: partial → unverified functional
    • Maintenance: pass → unverified functional
    • Licence: MIT functional
  • 28 Jul 26 +54
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • First check of Tool coverage: 100 functional
    • First check of Schema quality: pass functional
    • First check of Schema quality: excellent functional
    • First check of Schema quality: fail functional
    • Licence: MIT functional
  • 27 Jul 26 26

    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 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

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

MCP tools — 12 exposed · ~1,188 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
novai_get_ai_entity ~81

Fetch an on-chain AI entity (agent) by its entity id. Returns the entity record including code hash, creator, autonomy mode, capability bits, economic and stake balances, reputation score, transaction count, and activity timestamps, or null if no entity exists for that id.

NameTypeReqDescription
entity_idstringyesEntity id, 64 hex characters.

No output schema declared.

No examples provided.

novai_get_balance ~51

Fetch the balance and nonce for an account or entity address. The balance is returned as a decimal string to preserve full precision.

NameTypeReqDescription
addressstringyesAccount or entity address, 64 hex characters.

No output schema declared.

No examples provided.

novai_get_block ~140

Fetch a single committed block by height or by hash. Provide exactly one of height or hash. Returns the block height, block hash, parent hash, round, state root, and transaction count, or null if no such block is known. Note: the endpoint retains a bounded recent window of blocks by height, so very old heights can return null even though they were valid blocks. Lookups by hash work for any block the node still indexes.

NameTypeReqDescription
hashstringBlock hash, 64 hex characters. Provide either height or hash, not both.
heightintegerBlock height. Provide either height or hash, not both.

No output schema declared.

No examples provided.

novai_get_chain_status ~69

Return the latest committed block of the live NOVAI chain: its height, block hash, round, transaction count, state root, and parent hash. Use this to verify the chain is live and advancing, and to learn the current tip height before requesting a specific block. Takes no parameters.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

novai_get_memory_objects ~149

List the on-chain memory objects owned by an entity. Each object has an object id, a numeric object type, owner, creation and update heights, and hex encoded data. Object type codes: 0 ChainSummary, 1 LabelIndex, 2 EmbeddingCommitment, 3 AnomalyLog, 4 StatisticsSnapshot, 5 ReputationEvent, 6 Rating, 7 SignalCatalog, 8 CompositionGraph, 9 VerificationRecord, 10 DelegationGrant, 11 Subscription, 12 ServiceDescriptor, 13 VkRegistration, 14 SlaAgreement, 15 PaymentChannel.

NameTypeReqDescription
entity_idstringyesOwner entity id, 64 hex characters.

No output schema declared.

No examples provided.

novai_get_oracle_anchor ~70

Fetch a single oracle anchor by its signal hash. Returns the issuer entity, data hash, external timestamp, source hash, expiry and anchor heights, and data tag, or null if no anchor exists for that hash.

NameTypeReqDescription
signal_hashstringyesSignal hash, 64 hex characters.

No output schema declared.

No examples provided.

novai_get_oracle_anchors_by_entity ~138

List oracle anchors issued by a given entity within a block height range, optionally filtered by an external timestamp range. Returns issuer entity, data hash, external timestamp, source hash, expiry and anchor heights, and data tag for each.

NameTypeReqDescription
end_heightintegeryesLast block height in the range, inclusive.
entity_idstringyesIssuer entity id, 64 hex characters.
start_heightintegeryesFirst block height in the range, inclusive.
ts_maxintegerOptional highest external timestamp to include.
ts_minintegerOptional lowest external timestamp to include.

No output schema declared.

No examples provided.

novai_get_oracle_anchors_by_tag ~133

List oracle anchors carrying a given data tag within a block height range, optionally filtered by an external timestamp range. Returns issuer entity, data hash, external timestamp, source hash, expiry and anchor heights, and data tag for each.

NameTypeReqDescription
data_tagstringyesData tag to match.
end_heightintegeryesLast block height in the range, inclusive.
start_heightintegeryesFirst block height in the range, inclusive.
ts_maxintegerOptional highest external timestamp to include.
ts_minintegerOptional lowest external timestamp to include.

No output schema declared.

No examples provided.

novai_get_signals_by_height ~67

List the signal commitments recorded at a specific block height. Each entry has a commitment hash, a numeric signal type, the height, and the issuer. Use this to see which signals were committed in a given block.

NameTypeReqDescription
heightintegeryesBlock height to query.

No output schema declared.

No examples provided.

novai_get_signals_by_issuer ~91

List the signal commitments issued by a given entity within a block height range. Returns commitment hash, signal type, height, and issuer for each.

NameTypeReqDescription
end_heightintegeryesLast block height in the range, inclusive.
issuerstringyesIssuer entity id, 64 hex characters.
start_heightintegeryesFirst block height in the range, inclusive.

No output schema declared.

No examples provided.

novai_get_signals_by_type ~137

List the signal commitments of a given type within a block height range. The endpoint currently accepts these signal type codes: 0 Anomaly, 1 Optimization, 2 Prediction, 3 RiskScore, 4 AuditReport, 5 SpamRisk, 6 CongestionForecast. Returns commitment hash, signal type, height, and issuer for each.

NameTypeReqDescription
end_heightintegeryesLast block height in the range, inclusive.
signal_typeintegeryesSignal type code. The endpoint currently accepts 0 through 6.
start_heightintegeryesFirst block height in the range, inclusive.

No output schema declared.

No examples provided.

novai_get_transaction ~62

Fetch a confirmed transaction by its transaction id. Returns the block height, transaction index, sender address, nonce, fee, and payload length, or null if the transaction is not found.

NameTypeReqDescription
txidstringyesTransaction id, 64 hex characters.

No output schema declared.

No examples provided.