@rolli/mcp 1.1.0 → 1.1.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Rolli Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -23,28 +23,9 @@ MCP server for [Rolli IQ](https://rolli.ai) — social media search and analytic
23
23
 
24
24
  You need a Rolli account with API access. Get your API token and user ID from [rolli.ai](https://rolli.ai).
25
25
 
26
- ### Claude Desktop
26
+ ### Claude Desktop / Claude Code / VS Code / Cursor / Windsurf
27
27
 
28
- Add to your Claude Desktop config (`claude_desktop_config.json`):
29
-
30
- ```json
31
- {
32
- "mcpServers": {
33
- "rolli": {
34
- "command": "npx",
35
- "args": ["-y", "@rolli/mcp"],
36
- "env": {
37
- "ROLLI_API_TOKEN": "your_token",
38
- "ROLLI_USER_ID": "your_user_id"
39
- }
40
- }
41
- }
42
- }
43
- ```
44
-
45
- ### VS Code / Cursor / Windsurf
46
-
47
- Add to your MCP settings (`.vscode/mcp.json` or equivalent):
28
+ Add to your MCP config (`claude_desktop_config.json`, `.vscode/mcp.json`, or equivalent):
48
29
 
49
30
  ```json
50
31
  {
@@ -82,6 +63,17 @@ This server includes a `smithery.yaml` for deployment via [Smithery](https://smi
82
63
  **Set up a webhook:**
83
64
  > "Set my webhook URL to https://myapp.com/rolli-callback"
84
65
 
66
+ ## Development
67
+
68
+ ```sh
69
+ npm ci
70
+ npm run lint # ESLint
71
+ npm run build # TypeScript
72
+ npm test # Vitest
73
+ ```
74
+
75
+ CI runs on every push and PR to `master`. Releases published on GitHub automatically publish to npm (requires `NPM_TOKEN` repo secret).
76
+
85
77
  ## License
86
78
 
87
79
  MIT
package/build/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolli/mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "MCP server for Rolli IQ — social media search and analytics across X, Reddit, Bluesky, YouTube, LinkedIn, Facebook, Instagram, and Weibo",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -12,7 +12,8 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "build": "tsc",
15
- "prepare": "tsc",
15
+ "lint": "eslint src/",
16
+ "prepack": "tsc",
16
17
  "test": "vitest run"
17
18
  },
18
19
  "keywords": [
@@ -23,7 +24,16 @@
23
24
  "search",
24
25
  "model-context-protocol"
25
26
  ],
27
+ "author": "Rolli Inc.",
26
28
  "license": "MIT",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/rolliinc/rolli-mcp.git"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/rolliinc/rolli-mcp/issues"
35
+ },
36
+ "homepage": "https://github.com/rolliinc/rolli-mcp#readme",
27
37
  "engines": {
28
38
  "node": ">=18"
29
39
  },
@@ -32,8 +42,11 @@
32
42
  "zod": "^3.24.4"
33
43
  },
34
44
  "devDependencies": {
45
+ "@eslint/js": "^10.0.1",
35
46
  "@types/node": "^22.15.3",
47
+ "eslint": "^10.0.2",
36
48
  "typescript": "^5.8.3",
49
+ "typescript-eslint": "^8.56.1",
37
50
  "vitest": "^4.0.18"
38
51
  }
39
52
  }