You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update INSTALL.md with clearer MCP configuration examples
- Clarify Windows DPAPI vs Traditional configuration sections
- Add example Linux configuration for Quick Start guide
- Update INTERNAL_AUTH_SECRET placeholder text for clarity
- Rebaseline prompt injection scanner with legitimate prompt patterns (63 findings)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
"INTERNAL_AUTH_SECRET": "[RANDOM GENERATED SHARED SECRET ACROSS ALL AUTHOR'S USPTO MCPS]"
268
268
}
269
269
}
270
270
}
@@ -278,7 +278,7 @@ During the Windows setup, you'll be presented with two configuration methods:
278
278
- ⚡ **Direct Python execution**
279
279
- ✅ **Simpler setup**
280
280
281
-
**Example Configuration Generated:**
281
+
**Example Quick Start Windows Traditional Configuration Generated:**
282
282
283
283
```json
284
284
{
@@ -527,6 +527,29 @@ Checking MCP server health...
527
527
uspto_fpd: uv --directory /USER/uspto_fpd_mcp run fpd-mcp - ✓ Connected
528
528
```
529
529
530
+
**Example Quick Start Linux Configuration Generated:**
531
+
532
+
```json
533
+
{
534
+
"mcpServers": {
535
+
"uspto_fpd": {
536
+
"type": "stdio",
537
+
"command": "uv",
538
+
"args": [
539
+
"--directory",
540
+
"/root/mcp/uspto_fpd_mcp",
541
+
"run",
542
+
"fpd-mcp"
543
+
],
544
+
"env": {
545
+
"FPD_PROXY_PORT": "8081",
546
+
"CENTRALIZED_PROXY_PORT": "8080"
547
+
}
548
+
}
549
+
}
550
+
}
551
+
```
552
+
530
553
## 🔧 Claude Code CLI Configuration (Alternative Method)
531
554
532
555
**When to use this:** If you have Claude Code CLI installed and want to use the `~/.claude.json` configuration file instead of running the full setup script.
0 commit comments