@pablosr/mcp-google-calendar 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -124,10 +124,6 @@ npm run build
124
124
  node dist/index.js
125
125
  ```
126
126
 
127
- If everything is configured correctly, you'll see:
128
- ```
129
- ✅ Google Calendar configured correctly
130
- ```
131
127
 
132
128
  ### MCP Client Configuration
133
129
 
package/dist/index.js CHANGED
@@ -5,8 +5,8 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
5
5
  import { GoogleCalendarClient } from "./tools/google-calendar.js";
6
6
  import { registerGoogleCalendarTools } from "./tools/google-calendar-mcp.js";
7
7
  const server = new McpServer({
8
- name: "google-calendar-mcp",
9
- version: "1.0.0",
8
+ name: "mcp-google-calendar",
9
+ version: "1.0.2",
10
10
  });
11
11
  async function main() {
12
12
  console.error('Configurando Google Calendar API...');
package/package.json CHANGED
@@ -1,12 +1,10 @@
1
1
  {
2
2
  "name": "@pablosr/mcp-google-calendar",
3
3
  "description": "A Google Calendar (MCP) server to expose calendar operations as tools for LLM.",
4
- "version": "1.0.0",
4
+ "version": "1.0.2",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
- "bin": {
8
- "mcp-google-calendar": "dist/index.js"
9
- },
7
+ "bin": "dist/index.js",
10
8
  "files": [
11
9
  "dist"
12
10
  ],