@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 +0 -4
- package/dist/index.js +2 -2
- package/package.json +2 -4
package/README.md
CHANGED
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
|
|
9
|
-
version: "1.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.
|
|
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
|
],
|