trackmcp
Back to directory
itsanishjain

alchemy-sdk-mcp

View on GitHub
0 stars TypeScriptDeveloper Kits Updated Mar 5, 2025

Documentation

Alchemy MCP Plugin

smithery badge

This MCP plugin provides integration with the Alchemy SDK for blockchain and NFT operations.

Features

  • Get NFTs for a wallet address
  • Get NFT metadata
  • Get latest block number
  • More endpoints can be added as needed

Setup

Installing via Smithery

To install alchemy-sdk-mcp for Claude Desktop automatically via Smithery:

bash
npx -y @smithery/cli install @itsanishjain/alchemy-sdk-mcp --client claude

Manual Installation

1. Install dependencies:

bash
npm install

2. Build the project:

bash
npm run build

3. Configure your Alchemy API key:

    4. Start the server:

    bash
    npm start

    Available Endpoints

    1. Get NFTs for Owner

    typescript
    POST /getNftsForOwner
    {
        "owner": "wallet_address"
    }

    2. Get NFT Metadata

    typescript
    POST /getNftMetadata
    {
        "contractAddress": "contract_address",
        "tokenId": "token_id"
    }

    3. Get Block Number

    typescript
    POST /getBlockNumber

    Error Handling

    All endpoints include proper error handling and logging. Errors are returned in the format:

    json
    {
        "error": "Error message"
    }

    Logging

    The server implements comprehensive logging using console.error for better debugging:

    • [Setup] logs for initialization
    • [API] logs for API calls
    • [Error] logs for error handling

    $env:ALCHEMY_API_KEY="KRdhdsBezoTMVajIknIxlXgBHc1Pprpw"; node dist/index.js

    Frequently asked questions

    What is alchemy-sdk-mcp?

    alchemy-sdk-mcp is a Model Context Protocol (MCP) server listed in the TrackMCP directory.

    How do I install alchemy-sdk-mcp?

    Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

    Is alchemy-sdk-mcp open source?

    Yes — it is hosted on GitHub at https://github.com/itsanishjain/alchemy-sdk-mcp.

    Related MCP tools

    Run your own MCP server? See who uses it and what to fix.

    Measure it with TrackMCP