snowbll-mcp 0.2.2 → 0.2.3

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 +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ Two binaries ship in one package:
13
13
  | `snowbll-mcp` | [Model Context Protocol](https://modelcontextprotocol.io) server over stdio — launched by agents (Claude, Cursor, Hermes, …) |
14
14
  | `snowbll` | CLI for humans — search, persona, Forge, key management |
15
15
 
16
- There is also a **hosted remote MCP server (developer preview)** at `https://www.snowbll.com/api/mcp` (Streamable HTTP) for clients that connect to URLs instead of launching processes — ChatGPT connectors, Claude custom connectors, Hermes remote MCP. It connects with **no key and no sign-in** — the catalog and Forge tools work right away. Only `get_persona` is consent-scoped: complete the optional OAuth sign-in for the read-only `persona.read` scope (some clients offer it on connect), or pass an `sb_` key.
16
+ There is also a **hosted remote MCP server (developer preview)** at `https://www.snowbll.com/api/mcp` (Streamable HTTP) for clients that connect to URLs instead of launching processes — ChatGPT connectors, Claude custom connectors, Hermes remote MCP. It is an **OAuth 2.1 protected resource**: MCP clients start the sign-in flow automatically on connect (no manual key needed); persona access uses the `persona.read` scope.
17
17
 
18
18
  ## Tools
19
19
 
@@ -33,13 +33,13 @@ Honesty model: `verification` is `verified` only after third-party human testing
33
33
 
34
34
  ### Claude Code
35
35
 
36
- Hosted (remote — no install, no sign-in to search):
36
+ Hosted (remote, OAuth — no install):
37
37
 
38
38
  ```bash
39
39
  claude mcp add --transport http snowbll https://www.snowbll.com/api/mcp
40
40
  ```
41
41
 
42
- It connects right away the catalog and Forge tools need no sign-in. To also read your persona, run `/mcp` and complete the optional OAuth sign-in (read-only `persona.read` scope).
42
+ Then run `/mcp` and complete the OAuth sign-in when prompted no manual key needed. Persona access uses the `persona.read` scope.
43
43
 
44
44
  Or run it locally over stdio (uses `SNOWBLL_API_KEY` if set — see below):
45
45
 
@@ -66,14 +66,14 @@ Omit the `env` block to run keyless (search, game lookups, and Forge tools still
66
66
  ### ChatGPT (remote connector — no install)
67
67
 
68
68
  1. Settings → Connectors (requires a plan with connectors/developer mode).
69
- 2. Add a custom connector with URL `https://www.snowbll.com/api/mcp`. It connects with no sign-in the catalog and Forge tools work right away. For persona, complete the optional OAuth sign-in (read-only `persona.read` scope).
69
+ 2. Add a custom connector with URL `https://www.snowbll.com/api/mcp`, then complete the OAuth sign-in when prompted no manual key needed. Persona access uses the `persona.read` scope.
70
70
  3. Ask: *"Use Snowbll to find an economy sim like Lemonade Tycoon with a deep economy."*
71
71
 
72
72
  The remote server also implements OpenAI's `search` / `fetch` connector contract, so it works in ChatGPT deep research too.
73
73
 
74
74
  ### Claude (claude.ai custom connector / remote)
75
75
 
76
- Add a custom connector with URL `https://www.snowbll.com/api/mcp` it connects with no sign-in. The catalog and Forge tools (`search_games`, `get_game`, `list_forge_campaigns`, `get_forge_campaign`) work right away; `get_persona` is consent-scoped (complete the optional OAuth sign-in for read-only `persona.read`).
76
+ Add a custom connector with URL `https://www.snowbll.com/api/mcp` and complete the OAuth sign-in when prompted — no manual key needed. The catalog and Forge tools (`search_games`, `get_game`, `list_forge_campaigns`, `get_forge_campaign`) are free once connected; `get_persona` is consent-scoped via `persona.read`.
77
77
 
78
78
  ### Verify any setup
79
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snowbll-mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Snowbll MCP server + CLI — search the Snowbll game catalog, read consented personas, and follow Forge campaigns from any MCP-capable AI agent (Claude, ChatGPT, Cursor, Hermes) or your terminal. Live API, no mock data.",
5
5
  "type": "module",
6
6
  "license": "MIT",