Code Snippet Server
by ngeojiajun
Verified
{
"name": "systemprompt-mcp-google",
"version": "1.0.0",
"description": "A specialized Model Context Protocol (MCP) server that integrates with Google services (Gmail, Calendar, etc.) through MCP. This server enables seamless integration of Google services into your AI workflows.",
"type": "module",
"bin": {
"systemprompt-mcp-google": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"auth-google": "node --loader ts-node/esm scripts/auth-google.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"dotenv": "^16.4.5",
"google-auth-library": "^9.15.0",
"googleapis": "^144.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.11.24",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/systemprompt-io/systemprompt-mcp-google"
},
"keywords": [
"systemprompt",
"mcp",
"model-context-protocol",
"google",
"gmail",
"calendar",
"oauth"
],
"author": "SystemPrompt",
"license": "MIT",
"bugs": {
"url": "https://github.com/systemprompt-io/systemprompt-mcp-google/issues"
},
"homepage": "https://systemprompt.io",
"engines": {
"node": ">=18.0.0"
}
}