# Alchemy Plugin

Integrate blockchain and NFT operations seamlessly. Retrieve NFTs, their metadata, and the latest block number with ease. Enhance your applications with powerful blockchain capabilities using the Alc…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add itsanishjain/alchemy-sdk-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list itsanishjain/alchemy-sdk-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get itsanishjain/alchemy-sdk-mcp get_nfts_for_owner

# Call a tool
npx -y @smithery/cli@latest tool call itsanishjain/alchemy-sdk-mcp get_nfts_for_owner '{}'
```

## Tools (22)

- `get_nfts_for_owner` — Get NFTs owned by a specific wallet address
- `get_nft_metadata` — Get metadata for a specific NFT
- `get_nft_sales` — Get NFT sales data for a contract or specific NFT
- `get_contracts_for_owner` — Get NFT contracts owned by an address
- `get_floor_price` — Get floor price for an NFT collection
- `get_owners_for_nft` — Get owners of a specific NFT
- `get_nfts_for_contract` — Get all NFTs for a contract
- `get_transfers_for_contract` — Get transfers for an NFT contract
- `get_transfers_for_owner` — Get NFT transfers for an owner
- `get_token_balances` — Get token balances for a specific address
- `get_token_metadata` — Get metadata for a token contract
- `get_tokens_for_owner` — Get tokens owned by an address
- `get_asset_transfers` — Get asset transfers for a specific address or contract
- `get_transaction_receipts` — Get transaction receipts for a block
- `get_block_number` — Get the latest block number
- `get_block_with_transactions` — Get a block with its transactions
- `get_transaction` — Get transaction details by hash
- `resolve_ens` — Resolve an ENS name to an address
- `lookup_address` — Lookup the ENS name for an address
- `estimate_gas_price` — Estimate current gas price
- `subscribe` — Subscribe to blockchain events
- `unsubscribe` — Unsubscribe from blockchain events

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get itsanishjain/alchemy-sdk-mcp <tool-name>
```

---

Source: https://github.com/itsanishjain/alchemy-sdk-mcp
