@opengolfapi/mcp-server 2.0.0 → 2.1.0

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/dist/index.js +1 -1
  2. package/package.json +15 -4
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
11
11
  import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
12
12
  import { z } from 'zod';
13
13
  import { createClient } from '@supabase/supabase-js';
14
- const SUPABASE_URL = process.env.SUPABASE_URL ?? 'https://ysbzokxixabqrdogdvqc.supabase.co';
14
+ const SUPABASE_URL = process.env.SUPABASE_URL ?? 'https://zeskurqlsgvmahzmmsmd.supabase.co';
15
15
  const SUPABASE_KEY = process.env.SUPABASE_SERVICE_ROLE_KEY ?? '';
16
16
  if (!SUPABASE_KEY) {
17
17
  console.error('SUPABASE_SERVICE_ROLE_KEY required');
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@opengolfapi/mcp-server",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Open MCP server for AI agents to query the OpenGolfAPI dataset",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "opengolfapi-mcp": "dist/index.js"
8
8
  },
9
- "files": ["dist", "README.md", "LICENSE"],
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
10
14
  "scripts": {
11
15
  "build": "tsc",
12
16
  "prepublishOnly": "npm run build"
@@ -15,10 +19,17 @@
15
19
  "type": "git",
16
20
  "url": "git+https://github.com/opengolfapi/mcp-server.git"
17
21
  },
18
- "keywords": ["mcp", "golf", "opengolfapi", "ai"],
22
+ "keywords": [
23
+ "mcp",
24
+ "golf",
25
+ "opengolfapi",
26
+ "ai"
27
+ ],
19
28
  "author": "OpenGolfAPI",
20
29
  "license": "MIT",
21
- "bugs": { "url": "https://github.com/opengolfapi/mcp-server/issues" },
30
+ "bugs": {
31
+ "url": "https://github.com/opengolfapi/mcp-server/issues"
32
+ },
22
33
  "homepage": "https://opengolfapi.org",
23
34
  "dependencies": {
24
35
  "@modelcontextprotocol/sdk": "^1.0.0",