Blockchain MCP Server
Provides vanity address generation and RPC service for interacting with Ethereum, including static calls, balance queries, and transaction sending capabilities
Leverages Ethers.js library to provide blockchain interaction functionality, including ABI encoding/decoding and transaction management
Supports RPC service for Fantom blockchain, allowing static calls, balance queries, and transaction sending capabilities
Utilizes Node.js Worker Threads for multi-threaded concurrent computation in vanity address generation
Provides RPC service for Optimism blockchain, supporting static calls, balance queries, and transaction sending capabilities
Enables RPC service for Polygon blockchain, supporting static calls, balance queries, and transaction sending capabilities
Built using TypeScript for type-safe implementation of blockchain tools and services
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Blockchain MCP Servergenerate a vanity address starting with 'crypto' using 8 workers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Blockchain MCP Server
A Model Context Protocol (MCP) based blockchain tools server providing Ethereum vanity address generation and Cast command functionality.
Features
1. Ethereum Vanity Address Generation
🎯 Support for specifying address prefix and suffix
⚡ Multi-threaded concurrent computation for optimized performance
📊 Real-time generation statistics display
✅ Address validity verification
2. Cast Command Tools
🔍 4byte: Get function signatures from function selectors
🔧 4byte-decode: Decode ABI-encoded calldata
📦 abi-encode: ABI encode function parameters
🔄 abi-decode: ABI decode data
3. RPC Service
📞 static-call: Make static calls on any EVM-compatible chain (read-only)
💸 send-transaction: Send transactions to smart contracts (requires private key)
💰 get-balance: Query address balance
🔗 list-chains: List supported chains
Related MCP server: EVM MCP Server
Installation and Usage
Install Dependencies
npm installBuild Project
npm run buildRun Server
npm startDevelopment Mode
npm run devTool Usage Guide
Vanity Address Generation
generate-vanity-address
Generate Ethereum addresses matching specified conditions
Parameters:
prefix(optional): Address prefix, excluding 0xsuffix(optional): Address suffixworkers(optional): Number of concurrent threads, default 4, max 16caseSensitive(optional): Whether case-sensitive, default false
Example:
{
"prefix": "1234",
"suffix": "abcd",
"workers": 8,
"caseSensitive": false
}validate-ethereum-address
Validate Ethereum address validity
Parameters:
address: Ethereum address to validate
Cast Command Tools
4byte
Get function signatures for the given selector
Parameters:
selector: 4-byte function selector (hexadecimal)
Example:
{
"selector": "0xa9059cbb"
}4byte-decode
Decode ABI-encoded calldata
Parameters:
calldata: ABI-encoded calldata (hexadecimal)
Example:
{
"calldata": "0xa9059cbb000000000000000000000000..."
}abi-encode
ABI encode function parameters
Parameters:
types: Parameter types arrayvalues: Parameter values array
Example:
{
"types": ["uint256", "address", "bool"],
"values": [1000, "0x1234567890123456789012345678901234567890", true]
}abi-encode-with-signature
Complete function call ABI encoding (with function selector)
Parameters:
functionSignature: Function signaturevalues: Parameter values array
Example:
{
"functionSignature": "transfer(address,uint256)",
"values": ["0x1234567890123456789012345678901234567890", 1000]
}abi-decode
Decode ABI-encoded data
Parameters:
types: Parameter types arraydata: Hexadecimal data to decode
Example:
{
"types": ["uint256", "address"],
"data": "0x00000000000000000000000000000000000000000000000000000000000003e8"
}RPC Service Tools
list-chains
List all supported EVM-compatible chains
Parameters: None
get-balance
Query address balance on specified chain
Parameters:
chain: Chain identifier (e.g., "ethereum", "polygon", "bsc")address: Address to queryblockTag(optional): Block tag, default "latest"
Example:
{
"chain": "ethereum",
"address": "0x1234567890123456789012345678901234567890"
}static-call
Make static calls to smart contracts (read-only operations)
Parameters:
chain: Chain identifierto: Contract addressdata: ABI-encoded function call datablockTag(optional): Block tag, default "latest"
Example:
{
"chain": "ethereum",
"to": "0xA0b86a33E6441068C73f4Ea6cB24b80b52bF97F4",
"data": "0x70a08231000000000000000000000000123456789012345678901234567890123456789"
}send-transaction
Send transactions to smart contracts (requires private key)
Parameters:
chain: Chain identifierto: Contract addressdata: ABI-encoded function call datavalue(optional): ETH amount to send (wei)gasLimit(optional): Gas limitgasPrice(optional): Gas price (wei)privateKey: Sender's private key
Example:
{
"chain": "sepolia",
"to": "0x1234567890123456789012345678901234567890",
"data": "0xa9059cbb000000000000000000000000...",
"value": "0",
"privateKey": "0x..."
}Performance Optimization
Vanity Address Generation Performance Tips
Shorter prefixes generate faster
Suffixes are slightly easier than prefixes
Recommended to use 4-8 worker threads for optimal performance
Avoid specifying both long prefix and long suffix simultaneously
Expected Generation Time
4 hex characters: seconds to minutes
5 hex characters: minutes to tens of minutes
6 hex characters: hours
7+ characters: may take very long time
Supported Blockchain Networks
Mainnet
Ethereum: ethereum (Chain ID: 1)
Polygon: polygon (Chain ID: 137)
BSC: bsc (Chain ID: 56)
Arbitrum: arbitrum (Chain ID: 42161)
Optimism: optimism (Chain ID: 10)
Avalanche: avalanche (Chain ID: 43114)
Fantom: fantom (Chain ID: 250)
Testnet
Sepolia: sepolia (Chain ID: 11155111)
All networks use public RPC endpoints to ensure stability and accessibility.
Tech Stack
TypeScript: Type-safe JavaScript
MCP SDK: Model Context Protocol implementation
Ethers.js: Ethereum library
Node.js Worker Threads: Multi-threaded concurrent computation
4byte.directory API: Function signature database
Security Considerations
⚠️ Important Notes:
Generated private keys have complete control over assets
Always keep private keys secure and never share them with anyone
Recommend generating important addresses in offline environments
This tool is for learning and testing purposes only
Installation via NPM
You can install this MCP server globally:
npm install -g blockchain-mcp-serverOr use it with npx:
npx blockchain-mcp-serverMCP Configuration
Add to your MCP client configuration:
{
"mcpServers": {
"blockchain": {
"command": "npx",
"args": ["blockchain-mcp-server"]
}
}
}License
MIT License
Available Tools
14 tools4byteGet Function SignaturesC
Get function signatures for the given selector from 4byte.directory
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | Function selector (4-byte hex), e.g., '0xa9059cbb' or 'a9059cbb' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves data ('Get'), implying a read-only operation, but doesn't disclose potential behaviors like network calls, rate limits, error handling, or output format. This is a significant gap for a tool with external dependencies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part earns its place by specifying the action, resource, and input, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's external dependency (4byte.directory) and lack of annotations or output schema, the description is incomplete. It doesn't explain what a 'function signature' entails, the return format, or error scenarios, leaving gaps in understanding for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the parameter 'selector' fully documented in the schema. The description adds no additional semantic context beyond what the schema provides, such as examples of valid selectors or edge cases. Baseline 3 is appropriate as the schema handles parameter documentation adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get function signatures') and the resource ('from 4byte.directory'), with the specific input ('for the given selector'). It distinguishes from siblings like 'sig' or 'event-sig' by focusing on function signatures from a specific directory. However, it doesn't explicitly differentiate from '4byte-decode' or 'abi-decode', which might have overlapping purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'sig', '4byte-decode', or 'abi-decode'. It mentions the source ('4byte.directory') but doesn't specify use cases, prerequisites, or exclusions, leaving the agent to infer usage from context alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
4byte-decodeDecode ABI CalldataC
Decode ABI-encoded calldata using 4byte.directory
| Name | Required | Description | Default |
|---|---|---|---|
| calldata | Yes | ABI-encoded calldata (hexadecimal string) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't mention any behavioral traits such as whether it's read-only, requires network access, has rate limits, or what happens with invalid input. For a tool with zero annotation coverage, this leaves significant gaps in understanding its operational characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose and method. Every word earns its place with no wasted text, making it appropriately sized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a decoding tool. It doesn't explain what the output looks like (e.g., decoded function signature and parameters), potential error conditions, or dependencies on external services like 4byte.directory. For a tool with this complexity and lack of structured data, the description should provide more context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'calldata' parameter clearly documented as 'ABI-encoded calldata (hexadecimal string)'. The description adds no additional parameter information beyond what's in the schema, so it meets the baseline of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Decode') and target ('ABI-encoded calldata'), and specifies the method ('using 4byte.directory'). It distinguishes from sibling tools like 'abi-decode' by mentioning the specific service used. However, it doesn't explicitly contrast with 'abi-decode' in terms of functionality differences.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'abi-decode' or 'sig'. It mentions 'using 4byte.directory' which hints at the decoding method, but offers no explicit when/when-not instructions or comparisons with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
abi-decodeabi decodeC
decode abi encoded data
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | hexadecimal data to decode | |
| types | Yes | parameter types array, e.g. ['uint256', 'address', 'bool'] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but offers no information about the tool's behavior. It doesn't describe what the tool returns (e.g., decoded values in a specific format), error conditions, performance characteristics, or any side effects. The description is too minimal to guide an agent effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at just three words, with zero wasted language. It's front-loaded with the core purpose, though this brevity comes at the cost of completeness. Every word earns its place by directly addressing the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of ABI decoding (a technical operation with specific input/output expectations), no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what decoded results look like, how errors are handled, or provide examples that would help an agent use the tool correctly in context with sibling tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for both parameters ('data' as hexadecimal data to decode, 'types' as parameter types array). The description adds no additional parameter semantics beyond what the schema provides, but the schema documentation is comprehensive, meeting the baseline for adequate coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'decode abi encoded data' is essentially a tautology that restates the tool name 'abi-decode' with minimal additional information. While it identifies the action (decode) and target (ABI encoded data), it lacks specificity about what ABI decoding entails or what distinguishes it from sibling tools like '4byte-decode' or 'abi-encode'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like '4byte-decode' (which might handle different encoding formats) or 'abi-encode' (the inverse operation), nor does it specify prerequisites or appropriate contexts for ABI decoding.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
abi-encodeabi encodeC
encode function parameters with abi
| Name | Required | Description | Default |
|---|---|---|---|
| types | Yes | parameter types array, e.g. ['uint256', 'address', 'bool'] | |
| values | Yes | parameter values array, corresponding to the types array |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states 'encode' but doesn't disclose behavioral traits such as whether this is a read-only computation, potential errors (e.g., type-value mismatch), output format (likely hex string), or domain-specific constraints (e.g., Ethereum ABI). The description is too minimal to inform the agent adequately about how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with a single sentence 'encode function parameters with abi', which is front-loaded and wastes no words. Every part earns its place by directly stating the tool's purpose without redundancy or fluff, making it efficient for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of ABI encoding (a technical Ethereum concept), no annotations, no output schema, and rich sibling tools, the description is incomplete. It doesn't explain what ABI is, the output (e.g., encoded bytes), common use cases, or how it fits with tools like 'send-transaction'. The agent lacks sufficient context to use this tool effectively without external knowledge.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for both parameters ('types' and 'values'). The description adds no additional meaning beyond the schema, such as examples of full encoding processes or edge cases. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, but the description doesn't compensate or enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'encode function parameters with abi' clearly states the action (encode) and target (function parameters with ABI), distinguishing it from sibling tools like 'abi-decode' or 'abi-encode-with-signature'. However, it doesn't specify what ABI encoding entails (e.g., Ethereum contract interaction) or differentiate from '4byte' or 'sig' tools beyond the basic verb+resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention scenarios like preparing contract calls, comparing to 'abi-encode-with-signature', or avoiding misuse with other encoding/decoding siblings. Without any context or exclusions, the agent must infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
abi-encode-with-signatureabi encode with signatureC
encode function call with abi
| Name | Required | Description | Default |
|---|---|---|---|
| functionSignature | Yes | function signature, e.g. 'transfer(address,uint256)' | |
| values | Yes | parameter values array, corresponding to the types array |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only states the action ('encode') without detailing any behavioral traits such as error handling, performance characteristics, or side effects. It lacks information on what the encoding produces (e.g., a hex string) or any constraints, making it insufficient for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise with a single phrase, 'encode function call with abi', which is front-loaded and wastes no words. However, it is arguably too brief, bordering on under-specified, but it efficiently conveys the core idea without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (encoding with ABI, which can be nuanced), lack of annotations, and no output schema, the description is incomplete. It fails to explain what the output is (e.g., encoded data format), any dependencies, or error conditions. This leaves significant gaps for an agent to understand and use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('functionSignature' and 'values') with clear descriptions. The description adds no additional meaning beyond what the schema provides, such as examples of usage or relationships between parameters. Baseline 3 is appropriate as the schema handles parameter documentation adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'encode function call with abi' states the general purpose (encoding) but is vague about what specifically is being encoded and how it differs from siblings. It mentions 'function call' and 'abi' but doesn't specify that this tool encodes with a signature, unlike the sibling 'abi-encode' which might encode differently. The description is functional but lacks specificity and sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description does not mention any context, prerequisites, or exclusions, nor does it reference sibling tools like 'abi-encode' or 'abi-decode' for comparison. This leaves the agent without clear usage instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
event-sigevent-sigC
get event selector
| Name | Required | Description | Default |
|---|---|---|---|
| eventName | Yes | event name, e.g. 'Transfer(address indexed from, address indexed to, uint256 amount)' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but only states the action without behavioral details. It doesn't disclose if this is read-only, has side effects, requires authentication, or handles errors, which is insufficient for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with three words, front-loaded and zero waste. Every word earns its place, making it efficient in structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and a single parameter, the description is incomplete. It lacks context on what an event selector is, how it's used, or what the tool returns, leaving significant gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with the parameter 'eventName' well-described in the schema. The description adds no additional meaning beyond the schema, so it meets the baseline for high schema coverage without compensating value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'get event selector' states a verb ('get') and resource ('event selector'), but is vague about what an 'event selector' is or its purpose. It doesn't distinguish from siblings like 'sig' or 'abi-encode-with-signature', leaving ambiguity in scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention context, prerequisites, or exclusions, leaving the agent to infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate-vanity-addressGenerate Ethereum Vanity AddressB
Generate Ethereum addresses matching specified prefix and suffix patterns with concurrent computation
| Name | Required | Description | Default |
|---|---|---|---|
| caseSensitive | No | Whether to match case-sensitively, default false | |
| prefix | No | Address prefix (without 0x), e.g., '1234' | |
| suffix | No | Address suffix, e.g., 'abcd' | |
| workers | No | Number of concurrent worker threads, default 4 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'concurrent computation' which hints at performance characteristics, but fails to address critical aspects like computational intensity, time expectations, whether this is a read-only operation, or any potential side effects. For a tool that likely involves significant computation, this is inadequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the core purpose without unnecessary words. It's appropriately sized and front-loaded with the main functionality, making it easy for an agent to quickly understand what the tool does.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a computational tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the output looks like (address format, private key handling), doesn't warn about computational requirements, and provides minimal behavioral context. Given the complexity of vanity address generation, more completeness is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, providing complete parameter documentation. The description adds no additional parameter semantics beyond what's already in the schema, so it meets but doesn't exceed the baseline expectation. No parameters are explained in the description text itself.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Generate Ethereum addresses') and resource ('matching specified prefix and suffix patterns'), with the additional detail 'with concurrent computation' distinguishing it from basic address generation tools. It precisely communicates what the tool does without being tautological.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. While sibling tools like 'validate-ethereum-address' or 'get-balance' exist, there's no mention of when this vanity address generation is appropriate versus other address-related operations, leaving the agent without contextual usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-balanceGet BalanceB
Get the balance of an address on any EVM-compatible chain
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Address to check balance for | |
| blockTag | No | Block tag (latest, earliest, pending, or block number) | latest |
| chain | Yes | Chain identifier. Available: ethereum, polygon, bsc, arbitrum, optimism, avalanche, fantom, sepolia |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but lacks details on traits like rate limits, authentication needs, error handling, or response format. For a read operation with no annotations, this is a significant gap, as it doesn't clarify if it's safe, fast, or has any constraints beyond the basic functionality.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without waste. It's appropriately sized for a simple tool, with every word contributing to clarity. No unnecessary details or redundancy are present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (3 parameters, no output schema, no annotations), the description is minimally complete. It covers the basic purpose but lacks behavioral context and usage guidelines. With no output schema, it doesn't explain return values, which could be a gap, but the simplicity of the tool makes this adequate for a baseline score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters (address, blockTag, chain) with descriptions. The description adds no additional meaning beyond what's in the schema, such as explaining parameter interactions or examples. Baseline 3 is appropriate when the schema does the heavy lifting, but no extra value is provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('balance of an address'), specifying the scope ('on any EVM-compatible chain'). It distinguishes from siblings like 'send-transaction' or 'validate-ethereum-address' by focusing on balance retrieval rather than transaction sending or validation. However, it doesn't explicitly differentiate from 'static-call' which might also retrieve data, making it a 4 rather than a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an address), exclusions, or comparisons with siblings like 'static-call' for other data retrieval. The context is implied but not explicit, leaving the agent to infer usage based on the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
keccak256keccak256B
calculate keccak256 hash
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | data to hash |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only states what the tool does ('calculate keccak256 hash') but provides no information about performance characteristics, error conditions, input validation, or output format. For a cryptographic tool with zero annotation coverage, this represents a significant gap in behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at just three words, with zero wasted language. Every word earns its place: 'calculate' specifies the action, 'keccak256' identifies the algorithm, and 'hash' clarifies the operation type. This is a model of efficiency for a simple, single-purpose tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single parameter, no output schema, no annotations), the description is minimally adequate. It identifies the core function but lacks important context about input encoding, output format, and error handling. For a cryptographic hash function, users need to know whether input should be hex-encoded, UTF-8, etc., and what format the hash output will be in.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'data' clearly documented as 'data to hash'. The description doesn't add any additional semantic information beyond what the schema provides - it doesn't specify encoding requirements, size limitations, or formatting expectations. With complete schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as 'calculate keccak256 hash', which is a specific verb ('calculate') and resource ('keccak256 hash'). It distinguishes itself from sibling tools like 'abi-encode' or 'send-transaction' by focusing specifically on hash calculation. However, it doesn't explicitly differentiate from other potential hash functions that might exist in the ecosystem.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of when keccak256 hashing is appropriate versus other hash functions, nor does it reference any of the sibling tools that might serve related purposes. The user must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list-chainsList Supported ChainsB
List all supported EVM-compatible chains and their configurations
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe how it behaves - no information about response format, pagination, rate limits, authentication requirements, or whether it's a read-only operation. 'List' implies reading, but this isn't explicitly confirmed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It's appropriately sized for a simple listing tool with no parameters and gets straight to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple listing tool with no parameters and no output schema, the description provides the basic purpose but lacks important context. Without annotations or output schema, the description should ideally mention what information is returned (chain IDs, names, RPC URLs, etc.) and that this is a read-only operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't mention parameters since none exist, maintaining focus on the tool's purpose rather than unnecessary details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'list' and the resource 'all supported EVM-compatible chains and their configurations', making the purpose immediately understandable. It doesn't distinguish from siblings (like 'get-balance' or 'send-transaction'), but those are fundamentally different operations, so differentiation isn't critical here.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. While siblings like 'get-balance' or 'send-transaction' serve different purposes, there's no mention of when this listing operation is appropriate or what context it serves within the broader toolset.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send-transactionSend TransactionB
Send a transaction to a smart contract on any EVM-compatible chain (requires private key)
| Name | Required | Description | Default |
|---|---|---|---|
| chain | Yes | Chain identifier. Available: ethereum, polygon, bsc, arbitrum, optimism, avalanche, fantom, sepolia | |
| data | Yes | ABI-encoded function call data | |
| gasLimit | No | Gas limit for the transaction | |
| gasPrice | No | Gas price (in wei) | |
| privateKey | Yes | Private key of the sender (will be handled securely) | |
| to | Yes | Contract address to call | |
| value | No | ETH value to send (in wei) | 0 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'requires private key' for authentication, but fails to disclose critical traits such as whether the transaction is destructive (likely yes, as it sends), rate limits, error handling, or what happens upon success/failure. This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and key constraint ('requires private key'). It contains no wasted words and is appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation operation with 7 parameters, no annotations, and no output schema), the description is incomplete. It lacks information on behavioral traits (e.g., destructiveness, response format), error scenarios, and does not compensate for the absence of annotations or output schema, leaving the agent with insufficient context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 7 parameters thoroughly. The description adds no additional parameter semantics beyond what the schema provides, such as explaining interactions between parameters or usage examples. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('send a transaction'), target ('smart contract'), and scope ('any EVM-compatible chain'), distinguishing it from sibling tools like get-balance or static-call. It directly addresses what the tool does without being tautological.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning 'requires private key', which suggests authentication needs, but does not explicitly state when to use this tool versus alternatives like static-call (for read-only calls) or provide context on prerequisites. It offers some guidance but lacks explicit alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sigsigC
get function selector
| Name | Required | Description | Default |
|---|---|---|---|
| functionName | Yes | function signature, e.g. 'transfer(address,uint256)' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the action ('get') without detailing how it works—e.g., whether it computes a keccak256 hash, returns a hex string, handles errors, or has any side effects. For a tool with no annotation coverage, this leaves critical behavioral traits unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—just three words—and front-loaded with the core action. There is no wasted language, making it efficient, though this brevity contributes to gaps in other dimensions like clarity and transparency.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of Ethereum tooling and the lack of annotations and output schema, the description is incomplete. It doesn't explain what a function selector is, how it's used, or what the return value looks like (e.g., a 4-byte hex). For a tool in this context, more detail is needed to guide an AI agent effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the parameter 'functionName' clearly documented in the input schema as a string representing a function signature. The description adds no additional meaning beyond what the schema provides, such as examples of valid formats or constraints, so it meets the baseline score of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'get function selector' is essentially a tautology that restates the tool name 'sig' (which likely means 'signature' or 'selector'). It doesn't specify what a 'function selector' is, what domain it operates in (Ethereum/smart contracts), or what resource it acts upon. While it implies retrieval, the purpose remains vague without context about the function selector's role or format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. Given sibling tools like '4byte', 'abi-encode', and 'event-sig' that likely handle related Ethereum/smart contract operations, the description fails to differentiate this tool's specific use case, such as generating selectors for function calls versus events or other encoding tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
static-callStatic CallA
Make a static call to a smart contract on any EVM-compatible chain (read-only)
| Name | Required | Description | Default |
|---|---|---|---|
| blockTag | No | Block tag (latest, earliest, pending, or block number) | latest |
| chain | Yes | Chain identifier. Available: ethereum, polygon, bsc, arbitrum, optimism, avalanche, fantom, sepolia | |
| data | Yes | ABI-encoded function call data | |
| to | Yes | Contract address to call |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states the tool is 'read-only', which is crucial for safety, and specifies it works on 'any EVM-compatible chain', indicating broad compatibility. However, it lacks details on rate limits, error handling, or response format, which are important for a tool with no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads key information: the action ('Make a static call'), target ('smart contract'), scope ('any EVM-compatible chain'), and critical behavior ('read-only'). Every word earns its place with zero waste, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (interacting with smart contracts on multiple chains) and lack of annotations and output schema, the description is moderately complete. It covers the core purpose and safety ('read-only') but omits details on response format, error cases, or chain-specific nuances, which could help an agent use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so all parameters are documented in the schema. The description adds minimal value beyond the schema by mentioning 'EVM-compatible chain' (relevant to the 'chain' parameter) and 'read-only' (context for all parameters). This meets the baseline for high schema coverage but doesn't provide additional semantic insights.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Make a static call to a smart contract on any EVM-compatible chain (read-only)'. It specifies the verb ('Make a static call'), resource ('smart contract'), and scope ('any EVM-compatible chain'), but doesn't explicitly differentiate from sibling tools like 'send-transaction' or 'get-balance', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context through 'read-only' and 'EVM-compatible chain', suggesting this is for querying contract state without transactions. However, it doesn't explicitly state when to use this tool versus alternatives like 'send-transaction' (for write operations) or 'get-balance' (for simple balance checks), leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate-ethereum-addressValidate Ethereum AddressC
Validate the validity of an Ethereum address
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Ethereum address to validate |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the validation action without detailing traits like whether it's read-only (implied but not explicit), what validation criteria are used (e.g., checksum, length), error handling, or performance aspects. This leaves significant gaps for an agent to understand the tool's behavior beyond the basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized for a simple tool and front-loaded with the core purpose. Every word earns its place, making it easy to parse quickly without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 parameter, no output schema, no annotations), the description is incomplete. It lacks details on what constitutes a valid address, return values (e.g., boolean success/failure, error messages), or integration context. For a validation tool, this leaves the agent unsure of the outcome or how to interpret results, making it inadequate despite the straightforward function.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'address' parameter clearly documented. The description adds no additional meaning beyond what the schema provides, such as format examples or validation specifics. Since schema coverage is high, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool's purpose ('Validate the validity of an Ethereum address'), which is clear but vague. It specifies the verb ('validate') and resource ('Ethereum address'), but doesn't distinguish from siblings like 'generate-vanity-address' or 'get-balance' beyond the validation focus. The phrasing 'validity of an Ethereum address' is somewhat tautological but still conveys the core function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't mention prerequisites, context, or exclusions, such as whether it's for input validation before transactions or checking address formats. With siblings like 'send-transaction' and 'get-balance', there's no indication of when validation is necessary versus other operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
14 tool updates
v1.0.0- First observed
4byte - First observed
4byte-decode - First observed
abi-decode - First observed
abi-encode - First observed
abi-encode-with-signature - First observed
event-sig - First observed
generate-vanity-address - First observed
get-balance - First observed
keccak256 - First observed
list-chains - First observed
send-transaction - First observed
sig - First observed
static-call - First observed
validate-ethereum-address
TDQS
Most tools have distinct purposes, but there is some overlap between 'abi-decode' and '4byte-decode' (both decode ABI-encoded data) and between 'sig' and 'event-sig' (both get selectors). The descriptions clarify that '4byte-decode' uses an external service while 'abi-decode' is generic, and 'sig' is for functions while 'event-sig' is for events, but an agent might still confuse them initially.
The naming is mixed with kebab-case (e.g., '4byte-decode'), snake_case (e.g., 'keccak256'), and hyphenated phrases (e.g., 'generate-vanity-address'). There is no consistent verb_noun pattern; some tools use verbs like 'get' or 'validate', while others are noun-based like 'sig' or 'event-sig'. However, the names are generally readable and descriptive.
With 14 tools, the count is well-scoped for a blockchain utility server covering ABI encoding/decoding, address generation, balance checks, transaction handling, and chain management. Each tool appears to serve a specific function without obvious redundancy, fitting within the typical 3-15 range for such a domain.
The tool set covers core blockchain operations like ABI handling, address validation, balance queries, transaction sending, and static calls. Minor gaps include lack of tools for transaction signing without sending, or for deploying contracts, but agents can likely work around these with existing tools like 'send-transaction' and 'abi-encode'.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Self-hosted MCP server: 26 deterministic dev, security, and EVM tools.
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Related MCP Servers
- AlicenseDqualityDmaintenanceA Model Context Protocol server that gives LLMs the ability to interact with Ethereum networks, manage wallets, query blockchain data, and execute smart contract operations through a standardized interface.542014MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI agents to interact with 30+ Ethereum-compatible blockchain networks, providing services like token transfers, contract interactions, and ENS resolution through a unified interface.28127382MIT
- -licenseNot gradedqualityNot gradedmaintenanceComprehensive Model Context Protocol server that enables AI agents to interact with 30+ Ethereum-compatible blockchain networks, supporting token transfers, smart contract interactions, and ENS name resolution through a unified interface.1-
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables interaction with Foundry tools through natural language, allowing users to create projects, build contracts, run tests, and manage Ethereum development environments.2MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/lienhage/blockchain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server