first meow

This commit is contained in:
KS Jannette
2026-02-17 08:30:08 -05:00
commit 77ac2feb98
9 changed files with 2787 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "assistant",
"version": "1.0.0",
"description": "MCP server for Gmail job application management",
"type": "module",
"bin": {
"assistant": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"auth": "npm run build && node build/auth.js"
},
"files": [
"build"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"googleapis": "^171.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
}
}