MCP server intelligence profile

Hyperledger Fabric MCP Server

Enables AI assistants to interact with Hyperledger Fabric blockchain networks, supporting chaincode queries and invocations, block and transaction retrieval, chaincode lifecycle management, and channel operations

Local Onlyadityajoshi12
Awaiting current scanNpm · 1.0.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
12Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install fabric-mcp-server from npm

Version 1.0.3 declares 1 executable entrypoint.

npm install --save-exact fabric-mcp-server@1.0.3
npx -y -p fabric-mcp-server@1.0.3 fabric-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "fabric-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "fabric-mcp-server@1.0.3",
        "fabric-mcp-server"
      ]
    }
  }
}

Identity

Canonical slughyperledger-fabric-mcp-server-7b4e3ea5DeploymentLocal Only
Canonical packagenpm:fabric-mcp-serverRepositoryadityajoshi12/fabric-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmfabric-mcp-server1.0.32Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmfabric-mcp-server1.0.3CurrentSep 5, 202612 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
hyperledger-fabric-mcp-serverServer-reported name
1Capability groups
Aug 21, 2026Observed

Tools 12

ToolCategoryAnnotationsRisk
check_commit_readinessCheck if a chaincode definition is ready to be committed
Input schema
{
  "type": "object",
  "properties": {
    "chaincodeName": {
      "type": "string",
      "description": "The name of the chaincode"
    },
    "sequence": {
      "type": "number",
      "description": "The sequence number of the chaincode definition"
    },
    "version": {
      "type": "string",
      "description": "The version of the chaincode"
    }
  },
  "required": [
    "chaincodeName",
    "sequence",
    "version"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_approved_chaincodeGet the approved chaincode definition for an organization
Input schema
{
  "type": "object",
  "properties": {
    "chaincodeName": {
      "type": "string",
      "description": "The name of the chaincode to query"
    }
  },
  "required": [
    "chaincodeName"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_block_infoGet information about a specific block
Input schema
{
  "type": "object",
  "properties": {
    "blockNumber": {
      "type": "number",
      "description": "The block number to retrieve"
    }
  },
  "required": [
    "blockNumber"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_blockchain_infoGet blockchain information including total block count, current block hash, and previous block hash
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
get_channel_infoGet information about a specific channel
Input schema
{
  "type": "object",
  "properties": {
    "channelName": {
      "type": "string",
      "description": "The name of the channel"
    }
  },
  "required": [
    "channelName"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_committed_chaincodeGet the committed chaincode definition on the channel
Input schema
{
  "type": "object",
  "properties": {
    "chaincodeName": {
      "type": "string",
      "description": "The name of the chaincode to query"
    }
  },
  "required": [
    "chaincodeName"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_installed_chaincodesGet list of chaincodes installed on the peer
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
get_transaction_historyGet the transaction history for a specific asset
Input schema
{
  "type": "object",
  "properties": {
    "assetId": {
      "type": "string",
      "description": "The ID of the asset to get history for"
    }
  },
  "required": [
    "assetId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
invoke_chaincodeInvoke a transaction on the Hyperledger Fabric chaincode
Input schema
{
  "type": "object",
  "properties": {
    "function": {
      "type": "string",
      "description": "The chaincode function to invoke"
    },
    "args": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Arguments to pass to the chaincode function"
    }
  },
  "required": [
    "function",
    "args"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_channelsList all channels the peer has joined
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
list_enrolled_identitiesList all identities enrolled in the wallet
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
query_chaincodeQuery the Hyperledger Fabric chaincode (read-only)
Input schema
{
  "type": "object",
  "properties": {
    "function": {
      "type": "string",
      "description": "The chaincode function to query"
    },
    "args": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Arguments to pass to the chaincode function"
    }
  },
  "required": [
    "function",
    "args"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Hyperledger Fabric MCP Server questions

How do I install Hyperledger Fabric MCP Server?

Install the selected package version with: npm install --save-exact fabric-mcp-server@1.0.3

What tools does Hyperledger Fabric MCP Server provide?

Hyperledger Fabric MCP Server exposed 12 tools during independent protocol observation, including check_commit_readiness, get_approved_chaincode, get_block_info, get_blockchain_info, get_channel_info, get_committed_chaincode, get_installed_chaincodes, get_transaction_history, and others.

Is Hyperledger Fabric MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Microsoft & Azure intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.