Skip to content

Commit d6217b6

Browse files
committed
Create shell script to start MCP server and update configuration
1 parent 9cd9ee7 commit d6217b6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ If you find this project useful, consider supporting the developer:
5050

5151
To use this MCP server with Claude:
5252

53-
1. Claude will start the server automatically using the npx command below
53+
1. Claude will start the server automatically using the shell script command
5454
2. Add the following MCP configuration to Claude:
5555

5656
```json
@@ -59,8 +59,7 @@ To use this MCP server with Claude:
5959
"googleCalendar": {
6060
"name": "Google Calendar MCP",
6161
"version": "1.0.0",
62-
"command": "npx",
63-
"args": ["--yes", "serve-mcp", "--port=3000", "--path=/Users/jonc/code/mcp-google-calendar"],
62+
"command": "/Users/jonc/code/mcp-google-calendar/start-mcp.sh",
6463
"description": "MCP server for Google Calendar access",
6564
"url": "http://localhost:3000",
6665
"mcpProtocolVersion": "0.1"

start-mcp.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#\!/bin/bash
2+
npm start

0 commit comments

Comments
 (0)