Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "gemini-workspace-extension",
"version": "1.0.0",
"description": "Google Workspace MCP Server Extension",
"version": "0.0.1",
"description": "Google Workspace Server Extension",
"private": true,
"bin": {
"gemini-workspace-server": "workspace-mcp-server/dist/index.js"
"gemini-workspace-server": "workspace-server/dist/index.js"
},
"workspaces": [
"workspace-server"
Expand Down Expand Up @@ -62,13 +62,16 @@
"url": "git+https://github.com/gemini-cli-extensions/workspace.git"
},
"keywords": [
"mcp",
"google-workspace",
"gmail",
"google-docs",
"google-drive",
"google-calendar",
"google-chat"
"google-chat",
"google-people",
"google-sheets",
"google-slides",
"gemini-cli"
],
"author": "Allen Hutchison",
"license": "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/auth-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

const { OAuthCredentialStorage } = require('../workspace-mcp-server/dist/auth-utils.js');
const { OAuthCredentialStorage } = require('../workspace-server/dist/auth-utils.js');

async function clearAuth() {
try {
Expand Down
6 changes: 3 additions & 3 deletions workspace-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workspace-server",
"version": "1.0.0",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand All @@ -14,8 +14,8 @@
"build:auth-utils": "node esbuild.auth-utils.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"author": "Allen Hutchison",
"license": "Apache-2.0",
"type": "commonjs",
"devDependencies": {
"esbuild": "^0.27.0"
Expand Down
2 changes: 1 addition & 1 deletion workspace-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async function main() {
// 2. Create the server instance
const server = new McpServer({
name: "google-workspace-server",
version: "1.0.0",
version: "0.0.1",
});

// 3. Register tools directly on the server
Expand Down