├── .env ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── .DS_Store ├── assets │ ├── aipower_logo.png │ ├── aipower_logo.svg │ ├── user_folder.png │ └── yingdao_logo.svg ├── baseServer.ts ├── httpServer.ts ├── i18n │ └── index.ts ├── index.ts ├── schema │ ├── local.ts │ └── openApi.ts ├── stdioServer.ts ├── types │ └── yingdao.d.ts └── yingdao │ ├── localService.ts │ ├── openApiService.ts │ └── tokenManager.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | .env 3 | .gitignore 4 | tsconfig.json 5 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/assets/aipower_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/assets/aipower_logo.png -------------------------------------------------------------------------------- /src/assets/aipower_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/assets/aipower_logo.svg -------------------------------------------------------------------------------- /src/assets/user_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/assets/user_folder.png -------------------------------------------------------------------------------- /src/assets/yingdao_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/assets/yingdao_logo.svg -------------------------------------------------------------------------------- /src/baseServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/baseServer.ts -------------------------------------------------------------------------------- /src/httpServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/httpServer.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schema/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/schema/local.ts -------------------------------------------------------------------------------- /src/schema/openApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/schema/openApi.ts -------------------------------------------------------------------------------- /src/stdioServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/stdioServer.ts -------------------------------------------------------------------------------- /src/types/yingdao.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/types/yingdao.d.ts -------------------------------------------------------------------------------- /src/yingdao/localService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/yingdao/localService.ts -------------------------------------------------------------------------------- /src/yingdao/openApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/yingdao/openApiService.ts -------------------------------------------------------------------------------- /src/yingdao/tokenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/src/yingdao/tokenManager.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying-dao/yingdao_mcp_server/HEAD/tsconfig.json --------------------------------------------------------------------------------