@oriva/mcp-server 0.1.0 → 0.1.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Exposes all 46 public Oriva API endpoints as MCP tools so AI agents (Claude Code
|
|
|
7
7
|
## Install + connect (Claude Code)
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
claude mcp add oriva
|
|
10
|
+
claude mcp add oriva -e ORIVA_API_KEY=oriva_pk_live_xxx -- npx -y @oriva/mcp-server
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Then in any Claude Code session, `/mcp` lists `oriva` and you can ask things like:
|
|
@@ -74,7 +74,7 @@ The [MCP Inspector](https://modelcontextprotocol.io/docs/tools/inspector) gives
|
|
|
74
74
|
To add the locally-built server to Claude Code:
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
claude mcp add oriva-dev node $PWD/dist/index.js
|
|
77
|
+
claude mcp add oriva-dev -e ORIVA_API_KEY=oriva_pk_live_xxx -- node $PWD/dist/index.js
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oriva/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Model Context Protocol server for the Oriva public API. Exposes all 46 public endpoints as MCP tools for use in Claude Code, Cursor, Continue, and Claude Desktop.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|