package.json•1.35 kB
{
"name": "google-sheets-mcp-server",
"version": "1.0.0",
"description": "MCP server for reading Google Sheets data with OAuth 2.0 authentication",
"author": "Google Sheets MCP Server Contributors",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"google-sheets-mcp-server": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"SETUP.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"google-sheets",
"google-drive",
"claude",
"claude-desktop",
"oauth2",
"spreadsheet",
"sheets-api"
],
"repository": {
"type": "git",
"url": "https://github.com/saturnino-adrales/gdocs-mcp.git"
},
"bugs": {
"url": "https://github.com/saturnino-adrales/gdocs-mcp/issues"
},
"homepage": "https://github.com/saturnino-adrales/gdocs-mcp#readme",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist",
"auth": "node authenticate.js",
"cleanup": "node cleanup-credentials.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"googleapis": "^144.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}