├── .gitignore ├── .npmignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── cli.js ├── package.json ├── smithery.yaml ├── src ├── server.ts ├── storage │ └── researchStorage.ts ├── tools │ ├── index.ts │ └── researchTools.ts ├── types │ ├── external.ts │ ├── index.ts │ └── research.ts └── utils │ └── searchUtils.ts ├── tsconfig.json └── web3-research.skill /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/.npmignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/bin/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/package.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/storage/researchStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/storage/researchStorage.ts -------------------------------------------------------------------------------- /src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/tools/index.ts -------------------------------------------------------------------------------- /src/tools/researchTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/tools/researchTools.ts -------------------------------------------------------------------------------- /src/types/external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/types/external.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/types/research.ts -------------------------------------------------------------------------------- /src/utils/searchUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/src/utils/searchUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web3-research.skill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronjmars/web3-research-mcp/HEAD/web3-research.skill --------------------------------------------------------------------------------