We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5ec3c6 commit f6ef915Copy full SHA for f6ef915
docs/tools/mcp/setup.mdx
@@ -66,16 +66,20 @@ Add to your Claude Desktop configuration:
66
67
```json
68
{
69
- "mcpServers": {
70
- "revenuecat": {
71
- "command": "npx",
72
- "args": ["-y", "@modelcontextprotocol/server-fetch"],
73
- "env": {
74
- "FETCH_BASE_URL": "https://mcp.revenuecat.ai/mcp",
75
- "FETCH_HEADERS": "{\"Authorization\": \"Bearer YOUR_API_V2_SECRET_KEY\"}"
76
- }
+ "mcpServers": {
+ "revenuecat": {
+ "command": "npx",
+ "args": [
+ "mcp-remote",
+ "https://mcp.revenuecat.ai/mcp",
+ "--header",
+ "Authorization: Bearer ${AUTH_TOKEN}"
77
+ ],
78
+ "env": {
79
+ "AUTH_TOKEN": "YOUR_API_V2_SECRET_KEY"
80
+ }
81
82
}
83
84
```
85
0 commit comments