Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

verify_agent_identity

Verify and register an AI agent's on-chain identity using ERC-8004 standard to confirm wallet address authenticity and generate identity NFT details.

Instructions

Verify and register an AI agent's on-chain identity (ERC-8004).

Args: agent_address: The agent's wallet address proof: Optional identity proof or attestation

Returns: Verification status and on-chain identity NFT details.

Price: $2.00

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_addressYes
proofNo

Implementation Reference

  • The `verify_agent_identity` function serves as both the handler and registration for the MCP tool. It uses the @mcp.tool() decorator to register the tool and contains the logic to call the CoinRailz service.
    @mcp.tool()
    async def verify_agent_identity(agent_address: str, proof: str = None) -> str:
        """
        Verify and register an AI agent's on-chain identity (ERC-8004).
        
        Args:
            agent_address: The agent's wallet address
            proof: Optional identity proof or attestation
        
        Returns:
            Verification status and on-chain identity NFT details.
        
        Price: $2.00
        """
        payload = {"agentAddress": agent_address}
        if proof:
            payload["proof"] = proof
        result = await call_coinrailz_service("verified-agent-identity", payload)
        return json.dumps(result, indent=2)

Latest Blog Posts

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/tdnupe3/mcp-server-coinrailz'

If you have feedback or need assistance with the MCP directory API, please join our Discord server