riveter-mcp-server 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +21 -12
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Riveter MCP Server
2
2
 
3
- sup.
4
-
5
- An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that connects Claude to the [Riveter API](https://riveterhq.com). Run enrichments, scrape webpages, manage monitors, and more — directly from Claude.
3
+ An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that connects AI assistants like Claude and Cursor to the [Riveter API](https://riveterhq.com). Run enrichments, build datasets, scrape webpages, manage monitors, and more — directly from your assistant.
6
4
 
7
5
  Tools are generated dynamically from Riveter's [OpenAPI spec](https://docs.riveterhq.com/openapi.yaml), so they stay up to date automatically.
8
6
 
@@ -12,9 +10,9 @@ Tools are generated dynamically from Riveter's [OpenAPI spec](https://docs.rivet
12
10
 
13
11
  Go to [app.riveterhq.com/settings/api](https://app.riveterhq.com/settings/api) and create an API key.
14
12
 
15
- ### 2. Configure Claude Desktop
13
+ ### 2. Configure your client
16
14
 
17
- Open your Claude Desktop config file:
15
+ **Claude Desktop** — open the config file:
18
16
 
19
17
  - **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
20
18
  - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
@@ -35,6 +33,20 @@ Add the Riveter server:
35
33
  }
36
34
  ```
37
35
 
36
+ **Cursor / Windsurf** — add the same `riveter` entry to your MCP config (e.g. `~/.cursor/mcp.json`).
37
+
38
+ **Claude Code:**
39
+
40
+ ```bash
41
+ claude mcp add riveter --env RIVETER_API_KEY=sk_riv_your_key_here -- npx -y riveter-mcp-server
42
+ ```
43
+
44
+ **Codex:**
45
+
46
+ ```bash
47
+ codex mcp add riveter --env RIVETER_API_KEY=sk_riv_your_key_here -- npx -y riveter-mcp-server
48
+ ```
49
+
38
50
  ## Environment variables
39
51
 
40
52
  | Variable | Required | Default | Description |
@@ -49,16 +61,13 @@ On startup, the server:
49
61
 
50
62
  1. Fetches the OpenAPI spec from `docs.riveterhq.com/openapi.yaml`
51
63
  2. Parses each endpoint into an MCP tool with typed parameters
52
- 3. Serves the tools over stdio for Claude to use
64
+ 3. Serves the tools over stdio for your assistant to use
53
65
 
54
- When you update the API docs, the MCP server picks up the changes next time Claude launches — no rebuild or republish needed.
66
+ When the API docs are updated, the MCP server picks up the changes the next time your assistant launches — no rebuild or republish needed.
55
67
 
56
- ## Development
68
+ ## Support
57
69
 
58
- ```bash
59
- npm install
60
- npm run dev
61
- ```
70
+ Questions or issues? See the [Riveter API docs](https://docs.riveterhq.com) or contact [support@riveterhq.com](mailto:support@riveterhq.com).
62
71
 
63
72
  ## License
64
73
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "riveter-mcp-server",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "mcpName": "io.github.CodyWatters/riveter",
5
5
  "description": "MCP server for the Riveter API — connects Claude to Riveter's enrichment, scraping, and monitoring tools",
6
+ "homepage": "https://docs.riveterhq.com",
6
7
  "repository": {
7
- "type": "git",
8
- "url": "https://github.com/CodyWatters/riveter-mcp-server.git"
8
+ "url": "https://github.com/riveterhq"
9
9
  },
10
10
  "type": "module",
11
11
  "main": "dist/index.js",