├── .gitignore ├── LICENSE ├── README.md ├── bin.js ├── images └── claude.png ├── index.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/bin.js -------------------------------------------------------------------------------- /images/claude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/images/claude.png -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eniayomi/gcp-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------