@@ -295,7 +295,9 @@ The server exposes blockchain data through the following MCP resource URIs:
295295mcp-evm-server/
296296├── src/
297297│ ├── index.ts # Main stdio server entry point
298- │ ├── http-server.ts # HTTP server with SSE
298+ │ ├── server/ # Server-related files
299+ │ │ ├── http-server.ts # HTTP server with SSE
300+ │ │ └── server.ts # General server setup
299301│ ├── core/
300302│ │ ├── chains.ts # Chain definitions and utilities
301303│ │ ├── resources.ts # MCP resources implementation
@@ -304,13 +306,13 @@ mcp-evm-server/
304306│ │ └── operations/ # Core blockchain operations
305307│ │ ├── index.ts # Operation exports
306308│ │ ├── balance.ts # Balance operations
307- │ │ ├── blocks.ts # Block operations
308- │ │ ├── clients.ts # RPC client utilities
309- │ │ ├── contracts.ts # Contract interactions
310- │ │ ├── tokens.ts # Token metadata operations
311309│ │ ├── transfer.ts # Token transfer operations
310+ │ │ ├── utils.ts # Utility functions
311+ │ │ ├── tokens.ts # Token metadata operations
312+ │ │ ├── contracts.ts # Contract interactions
312313│ │ ├── transactions.ts # Transaction operations
313- │ │ └── utils.ts # Utility functions
314+ │ │ └── blocks.ts # Block operations
315+ │ │ └── clients.ts # RPC client utilities
314316├── package.json
315317├── tsconfig.json
316318└── README.md
@@ -327,4 +329,4 @@ To modify or extend the server:
327329
328330## 📄 License
329331
330- MIT
332+ This project is licensed under the terms of the [ MIT License ] ( ./LICENSE ) .
0 commit comments