Skip to content

Commit f6ef915

Browse files
authored
fix mcp config for claude desktop (#993)
1 parent d5ec3c6 commit f6ef915

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

docs/tools/mcp/setup.mdx

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,20 @@ Add to your Claude Desktop configuration:
6666

6767
```json
6868
{
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-
}
69+
"mcpServers": {
70+
"revenuecat": {
71+
"command": "npx",
72+
"args": [
73+
"mcp-remote",
74+
"https://mcp.revenuecat.ai/mcp",
75+
"--header",
76+
"Authorization: Bearer ${AUTH_TOKEN}"
77+
],
78+
"env": {
79+
"AUTH_TOKEN": "YOUR_API_V2_SECRET_KEY"
80+
}
81+
}
7782
}
78-
}
7983
}
8084
```
8185

0 commit comments

Comments
 (0)