@seven.io/mcp 1.0.3 → 1.0.5

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 +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,7 +36,7 @@ Model Context Protocol (MCP) server for the [seven.io](https://www.seven.io) API
36
36
  ## Installation
37
37
 
38
38
  ```bash
39
- npm install -g @seven.io/seven-mcp
39
+ npm install -g @seven.io/mcp
40
40
  ```
41
41
 
42
42
  ## Authentication
@@ -96,8 +96,8 @@ Add this to your Claude Desktop configuration file:
96
96
  {
97
97
  "mcpServers": {
98
98
  "seven": {
99
- "command": "node",
100
- "args": ["/absolute/path/to/mcp-seven/dist/index.js"]
99
+ "command": "npx",
100
+ "args": ["@seven.io/mcp"]
101
101
  }
102
102
  }
103
103
  }
@@ -108,8 +108,8 @@ Add this to your Claude Desktop configuration file:
108
108
  {
109
109
  "mcpServers": {
110
110
  "seven": {
111
- "command": "node",
112
- "args": ["/absolute/path/to/mcp-seven/dist/index.js"],
111
+ "command": "npx",
112
+ "args": ["@seven.io/mcp"],
113
113
  "env": {
114
114
  "SEVEN_API_KEY": "your-api-key"
115
115
  }
@@ -124,8 +124,8 @@ To enable request/response logging for debugging, add the `SEVEN_LOG_FILE` envir
124
124
  {
125
125
  "mcpServers": {
126
126
  "seven": {
127
- "command": "node",
128
- "args": ["/absolute/path/to/mcp-seven/dist/index.js"],
127
+ "command": "npx",
128
+ "args": ["@seven.io/mcp"],
129
129
  "env": {
130
130
  "SEVEN_API_KEY": "your-api-key",
131
131
  "SEVEN_LOG_FILE": "/tmp/mcp-seven-debug.log"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seven.io/mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "MCP server for seven.io API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",