├── .env.example ├── .gitignore ├── README.md ├── claude_desktop_config.json ├── config └── claude_desktop_config.json ├── package.json ├── requirements.txt ├── src ├── claude_api_server.py └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/README.md -------------------------------------------------------------------------------- /claude_desktop_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/claude_desktop_config.json -------------------------------------------------------------------------------- /config/claude_desktop_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/config/claude_desktop_config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/claude_api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/src/claude_api_server.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlobo2012/Claude_Desktop_API_USE_VIA_MCP/HEAD/tsconfig.json --------------------------------------------------------------------------------