@claudinho/mcp 0.5.2 → 0.6.1

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 CHANGED
@@ -15,18 +15,21 @@ Cursor, Codex, Claude Desktop, Windsurf, Zed, VS Code, or any MCP client (stdio)
15
15
  claude mcp add claudinho -- npx -y @claudinho/mcp
16
16
  ```
17
17
 
18
+ **Cursor** — add to `~/.cursor/mcp.json` (global) or a project `.cursor/mcp.json`:
19
+ ```json
20
+ { "mcpServers": { "claudinho": { "command": "npx", "args": ["-y", "@claudinho/mcp"] } } }
21
+ ```
22
+ > Bonus: `claudinho init-cursor-statusline` (from `@claudinho/cli`) also puts the live score
23
+ > in your Cursor CLI statusline — or run `claudinho init cursor` to do both at once.
24
+
18
25
  **Codex CLI**
19
26
  ```bash
20
27
  codex mcp add claudinho -- npx -y @claudinho/mcp
21
28
  ```
22
29
 
23
- **Cursor / Claude Desktop / Windsurf / Zed / VS Code** — standard stdio config:
24
- ```json
25
- { "mcpServers": { "claudinho": { "command": "npx", "args": ["-y", "@claudinho/mcp"] } } }
26
- ```
27
- Cursor: `.cursor/mcp.json` (or `~/.cursor/mcp.json`). Claude Desktop: Settings →
28
- Developer → Edit Config, then restart. Codex config file: `~/.codex/config.toml`
29
- (`[mcp_servers.claudinho]`, `command = "npx"`, `args = ["-y", "@claudinho/mcp"]`).
30
+ **Claude Desktop / Windsurf / Zed / VS Code** — standard stdio config (same JSON as Cursor):
31
+ Claude Desktop: Settings → Developer → Edit Config, then restart. Codex config file:
32
+ `~/.codex/config.toml` (`[mcp_servers.claudinho]`, `command = "npx"`, `args = ["-y", "@claudinho/mcp"]`).
30
33
 
31
34
  ## Tools
32
35
 
package/dist/index.js CHANGED
@@ -4017,7 +4017,7 @@ async function toolGetShareSnippet(args) {
4017
4017
 
4018
4018
  // src/server.ts
4019
4019
  var SERVER_NAME = "claudinho";
4020
- var SERVER_VERSION = "0.5.2";
4020
+ var SERVER_VERSION = "0.6.1";
4021
4021
  var VOICE = asFlavorLevel(process.env.CLAUDINHO_FLAVOR) === "off" ? "" : `
4022
4022
  Voice: when relaying scores, narrate with lively, regionally-appropriate football-commentary energy in the user's language. Each match line may end with a short exclamation ("\u2014 \xA1GOOOOL!") \u2014 use it as a tone cue. Keep every fact exact; never invent details and never impersonate or name a real commentator.`;
4023
4023
  var INSTRUCTIONS = `Claudinho serves live scores, fixtures, and group standings for the 2026 men's football tournament.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudinho/mcp",
3
- "version": "0.5.2",
3
+ "version": "0.6.1",
4
4
  "mcpName": "io.github.arturogarrido/claudinho",
5
5
  "description": "MCP server for the 2026 men's football tournament — live scores, fixtures, standings, read-only prediction-market signals, and paste-ready match cards. Works with Claude Code, Cursor, Codex, Windsurf, Zed. Not affiliated with FIFA or Anthropic.",
6
6
  "type": "module",
@@ -43,7 +43,10 @@
43
43
  "fixtures",
44
44
  "standings",
45
45
  "2026",
46
- "vibinglavidaloca"
46
+ "vibinglavidaloca",
47
+ "cursor-cli",
48
+ "cursor-agent",
49
+ "agent"
47
50
  ],
48
51
  "dependencies": {
49
52
  "@modelcontextprotocol/sdk": "^1.21.0",
@@ -54,7 +57,7 @@
54
57
  "tsup": "^8.0.0",
55
58
  "typescript": "^5.7.0",
56
59
  "vitest": "^4.1.0",
57
- "@claudinho/core": "0.5.2"
60
+ "@claudinho/core": "0.6.1"
58
61
  },
59
62
  "scripts": {
60
63
  "build": "tsup",