├── .gitignore ├── README-CN.md ├── README.md ├── package.json ├── src └── index.ts ├── static ├── 1.png ├── claude_settings.gif ├── config.gif ├── final_result.gif └── tools.gif └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/src/index.ts -------------------------------------------------------------------------------- /static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/static/1.png -------------------------------------------------------------------------------- /static/claude_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/static/claude_settings.gif -------------------------------------------------------------------------------- /static/config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/static/config.gif -------------------------------------------------------------------------------- /static/final_result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/static/final_result.gif -------------------------------------------------------------------------------- /static/tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/static/tools.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monad-developers/monad-mcp-tutorial/HEAD/tsconfig.json --------------------------------------------------------------------------------