@meetbot/mcp 1.2.4 → 1.2.6

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.
Files changed (2) hide show
  1. package/README.md +24 -6
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  A Model Context Protocol (MCP) server for the Meet.bot Booking Page API, enabling AI assistants to interact with scheduling and booking functionality.
4
4
 
5
+ ## What is this?
6
+
7
+ This MCP server connects AI assistants (like Claude, ChatGPT, and others that support MCP) to your Meet.bot account, allowing them to schedule meetings on your behalf. Instead of manually copying booking links or checking your calendar, you can simply ask your AI assistant to "schedule a 30-minute meeting with John next week" and it will handle the booking through your MeetBot scheduling pages.
8
+
9
+ **How it works:**
10
+ 1. Connect your MeetBot API token to the MCP server
11
+ 2. Configure your AI assistant to use this MCP server
12
+ 3. Ask your AI assistant to schedule meetings - it can check your availability, find time slots, and book meetings directly through your MeetBot account
13
+
14
+ This is particularly useful for busy professionals who want to automate meeting scheduling and let their AI assistant manage their calendar intelligently.
15
+
16
+ If you don't have an account, you can get one for free at https://meet.bot
17
+
5
18
  ## Features
6
19
 
7
20
  - **Complete API Coverage**: Implements all endpoints from the Meet.bot Booking Page API v1
@@ -12,7 +25,7 @@ A Model Context Protocol (MCP) server for the Meet.bot Booking Page API, enablin
12
25
  - **Health Checks**: Built-in health monitoring using the /v1/pages endpoint
13
26
  - **MCP Protocol Compliance**: Full Model Context Protocol server implementation
14
27
  - **Dual Mode Support**: Run locally (stdio) or remotely (HTTP/SSE)
15
- - **Production Deployed**: Live at https://meetbot-mcp-production.up.railway.app
28
+ - **Production Deployed**: Live at https://mcp.meet.bot
16
29
  - **Production Ready**: Thoroughly tested and validated for production use
17
30
 
18
31
  ## Installation
@@ -162,9 +175,9 @@ curl -N -H "Authorization: Bearer YOUR_TOKEN" http://localhost:3000/sse
162
175
 
163
176
  **Production Testing:**
164
177
  ```bash
165
- # Test the live Railway deployment
178
+ # Test the live deployment
166
179
  curl -H "Authorization: Bearer YOUR_TOKEN" \
167
- https://meetbot-mcp-production.up.railway.app/health
180
+ https://mcp.meet.bot/health
168
181
 
169
182
  # Expected response:
170
183
  # {"status":"ok","service":"meetbot-mcp"}
@@ -174,7 +187,7 @@ curl -H "Authorization: Bearer YOUR_TOKEN" \
174
187
 
175
188
  The HTTP server can be deployed to various platforms:
176
189
 
177
- - **Railway**: `railway up` ✅ **Live at https://meetbot-mcp-production.up.railway.app**
190
+ - **Railway**: `railway up` ✅ **Live at https://mcp.meet.bot**
178
191
  - **Fly.io**: `fly launch && fly deploy`
179
192
  - **Google Cloud Run**: Container-based deployment
180
193
  - **AWS App Runner**: Container-based deployment
@@ -183,7 +196,7 @@ The HTTP server can be deployed to various platforms:
183
196
  **Example: Connecting to Production**
184
197
  ```bash
185
198
  # Your MCP client should connect to:
186
- # https://meetbot-mcp-production.up.railway.app/sse
199
+ # https://mcp.meet.bot/sse
187
200
 
188
201
  # With Authorization header:
189
202
  # Authorization: Bearer <your-meetbot-api-token>
@@ -438,10 +451,15 @@ MIT License - see [LICENSE](LICENSE) file for details.
438
451
 
439
452
  ## Changelog
440
453
 
454
+ ### 1.2.6
455
+ - **Documentation Updates**: Updated production URL from Railway to https://mcp.meet.bot
456
+ - **Enhanced README**: Added "What is this?" section explaining the MCP's purpose and how to use it for scheduling meetings through MeetBot accounts
457
+ - **User Onboarding**: Added link to sign up for a free Meet.bot account
458
+
441
459
  ### 1.1.1
442
460
  - **ES Module Fix**: Fixed ES module compatibility for Railway and other Node.js deployments
443
461
  - **Import Extensions**: Added proper `.js` extensions to all relative imports
444
- - **Live Deployment**: Successfully deployed to Railway at https://meetbot-mcp-production.up.railway.app
462
+ - **Live Deployment**: Successfully deployed to https://mcp.meet.bot
445
463
  - **Production Validated**: Confirmed working in production environment
446
464
 
447
465
  ### 1.1.0
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@meetbot/mcp",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Model Context Protocol (MCP) server for Meet.bot booking page API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
- "bin": {
9
- "meetbot-mcp": "dist/cli.js",
10
- "meetbot-mcp-http": "dist/cli-http.js",
11
- "meetbot-mcp-streamable": "dist/cli-streamable.js"
12
- },
8
+ "bin": {
9
+ "meetbot-mcp": "dist/cli.js",
10
+ "meetbot-mcp-http": "dist/cli-http.js",
11
+ "meetbot-mcp-streamable": "dist/cli-streamable.js"
12
+ },
13
13
  "scripts": {
14
14
  "build": "tsc",
15
15
  "dev": "tsc --watch",