@vprop/mcp 1.0.1 → 1.0.3

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 +119 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,9 +25,21 @@ A vProp API key (`VP_…`). Contact [vProp](https://vprop.ai) to get one.
25
25
 
26
26
  ## Setup
27
27
 
28
+ The MCP server config block is the same across all clients — only the file location differs.
29
+
30
+ ```json
31
+ {
32
+ "command": "npx",
33
+ "args": ["-y", "@vprop/mcp"],
34
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
35
+ }
36
+ ```
37
+
38
+ ---
39
+
28
40
  ### Claude Desktop
29
41
 
30
- Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
42
+ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
31
43
 
32
44
  ```json
33
45
  {
@@ -35,15 +47,15 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
35
47
  "vprop": {
36
48
  "command": "npx",
37
49
  "args": ["-y", "@vprop/mcp"],
38
- "env": {
39
- "VPROP_API_KEY": "VP_your_key_here"
40
- }
50
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
41
51
  }
42
52
  }
43
53
  }
44
54
  ```
45
55
 
46
- Restart Claude Desktop — the vProp tools will be available immediately.
56
+ Restart Claude Desktop.
57
+
58
+ ---
47
59
 
48
60
  ### Claude Code (CLI)
49
61
 
@@ -51,7 +63,106 @@ Restart Claude Desktop — the vProp tools will be available immediately.
51
63
  claude mcp add vprop npx -e VPROP_API_KEY=VP_your_key_here -- -y @vprop/mcp
52
64
  ```
53
65
 
54
- ### Other MCP clients
66
+ ---
67
+
68
+ ### Cursor
69
+
70
+ Create or edit `.cursor/mcp.json` in your project root (or `~/.cursor/mcp.json` for global):
71
+
72
+ ```json
73
+ {
74
+ "mcpServers": {
75
+ "vprop": {
76
+ "command": "npx",
77
+ "args": ["-y", "@vprop/mcp"],
78
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
79
+ }
80
+ }
81
+ }
82
+ ```
83
+
84
+ Restart Cursor or run **Cursor: Reload MCP Servers** from the command palette.
85
+
86
+ ---
87
+
88
+ ### Windsurf
89
+
90
+ Edit `~/.codeium/windsurf/mcp_settings.json`:
91
+
92
+ ```json
93
+ {
94
+ "mcpServers": {
95
+ "vprop": {
96
+ "command": "npx",
97
+ "args": ["-y", "@vprop/mcp"],
98
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
99
+ }
100
+ }
101
+ }
102
+ ```
103
+
104
+ ---
105
+
106
+ ### Zed
107
+
108
+ Edit `~/.config/zed/settings.json`:
109
+
110
+ ```json
111
+ {
112
+ "context_servers": {
113
+ "vprop": {
114
+ "command": {
115
+ "path": "npx",
116
+ "args": ["-y", "@vprop/mcp"],
117
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ ```
123
+
124
+ ---
125
+
126
+ ### Continue (VS Code / JetBrains)
127
+
128
+ Edit `.continue/config.json` in your project (or `~/.continue/config.json` globally):
129
+
130
+ ```json
131
+ {
132
+ "mcpServers": [
133
+ {
134
+ "name": "vprop",
135
+ "command": "npx",
136
+ "args": ["-y", "@vprop/mcp"],
137
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
138
+ }
139
+ ]
140
+ }
141
+ ```
142
+
143
+ ---
144
+
145
+ ### Gemini CLI
146
+
147
+ Edit `~/.gemini/settings.json`:
148
+
149
+ ```json
150
+ {
151
+ "mcpServers": {
152
+ "vprop": {
153
+ "command": "npx",
154
+ "args": ["-y", "@vprop/mcp"],
155
+ "env": { "VPROP_API_KEY": "VP_your_key_here" }
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+ ---
162
+
163
+ ### Other MCP-compatible clients
164
+
165
+ Any client that follows the [MCP specification](https://modelcontextprotocol.io) uses the same stdio transport config:
55
166
 
56
167
  ```json
57
168
  {
@@ -61,6 +172,8 @@ claude mcp add vprop npx -e VPROP_API_KEY=VP_your_key_here -- -y @vprop/mcp
61
172
  }
62
173
  ```
63
174
 
175
+ > **Note:** ChatGPT and Gemini web interfaces do not currently support MCP servers. The tools above are desktop/CLI clients that run the MCP server locally.
176
+
64
177
  ## Available tools
65
178
 
66
179
  ### Voices & Music
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vprop/mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for the vProp Public API — generate real-estate listing videos with AI",
5
5
  "type": "module",
6
6
  "bin": {