================== /// MCP /// /// ALC /// ================== [server:online] [protocol:ready]
alchemy-mcp-server
by alchemyplatform
Alchemy's official MCP Server enabling AI agents to access Alchemy blockchain APIs via the Model Context Protocol.
55
12
Enterprise01
fetchTokenPriceBySymbol
Gets current price data for tokens by symbol
02
fetchTokenPriceByAddress
Gets current price data for tokens by contract address
03
fetchTokenPriceHistoryBySymbol
Gets historical price data for tokens
04
fetchTokensOwnedByMultichainAddresses
Gets token balances for addresses across multiple networks
05
fetchMultichainWalletAddressTransactionHistory
Gets transaction history for addresses across multiple networks
06
fetchTransfers
Gets token transfer data for addresses
07
fetchNftsOwnedByMultichainAddresses
Gets all NFTs owned by addresses
08
fetchNftContractDataByMultichainAddress
Gets NFT contract data for addresses
Installation
1. Prerequisites:
• Node.js ≥ 18 and npm ≥ 9
• A free Alchemy developer account – you will need an ALCHEMY_API_KEY.
2. Clone the repository
git clone https://github.com/alchemyplatform/alchemy-mcp-server.git
cd alchemy-mcp-server
3. Install dependencies
npm install
4. Configuration
• Copy .env.example (if present) to .env
• Set the following variables in .env:
ALCHEMY_API_KEY=<your-alchemy-key>
PORT=3333 # or any open port
# Add any other chain-specific keys if the project README lists them.
5. Build the TypeScript sources
npm run build
6. Start the MCP server
# Development (with automatic reload)
npm run dev
# Production
npm start
7. Verify
Server should be reachable at http://localhost:3333/. Health-check or /spec route (if implemented) should return 200.
Documentation
License: MIT License
Updated 7/30/2025