create-eth-agent
v0.1.4
Published
Create an Ethereum AI agent project in seconds
Downloads
58
Maintainers
Readme
create-eth-agent
Create an Ethereum AI agent project in seconds.
Usage
npx create-eth-agent@latest my-projectWhat it scaffolds
- TypeScript MCP server project wired to
eth-agent-kit .env.examplewith required environment variablesnpm run buildandnpm run setupscripts- IDE MCP configuration helper (
scripts/setup.ts)
After scaffold
cd my-project
cp .env.example .env
# fill in .env
npm run build
npm run setupThen restart your IDE and prompt your assistant (for example: "What is my ETH balance?").
Troubleshooting
If npm run build fails with TypeScript errors from node_modules/ox/..., ensure your scaffold contains:
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"]
}
}This fix is included in [email protected]+.
