Jake Shore 6d342a1545 Phase 1: Tier 2 complete — 13 servers upgraded to gold standard architecture
- READMEs added: asana, close, freshdesk, google-console, gusto, square
- main.ts + server.ts (lazy loading): activecampaign, clickup, klaviyo, mailchimp, pipedrive, trello, touchbistro, closebot, close, google-console
- All 13 compile with 0 TSC errors
2026-02-14 05:47:14 -05:00

31 lines
790 B
JSON

{
"name": "google-console-mcp",
"version": "1.0.0",
"description": "Google Search Console MCP Server with tool annotations, lazy loading, and interactive apps",
"type": "module",
"main": "dist/main.js",
"bin": {
"google-console-mcp": "dist/main.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/main.js",
"lint": "tsc --noEmit"
},
"keywords": ["mcp", "google-search-console", "seo", "analytics"],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"google-auth-library": "^9.15.1",
"googleapis": "^146.0.0",
"open": "^10.1.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
}
}