Skip to content

Commit c3b491f

Browse files
john-walkoeclaude
andcommitted
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>
1 parent 68ce026 commit c3b491f

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

INSTALL.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ During the Windows setup, you'll be presented with two configuration methods:
252252
-**Direct Python execution with built-in secure storage**
253253
-**No PowerShell execution policy requirements**
254254

255-
**Example Configuration Generated:**
255+
**Example Quick Start Windows DPAPI Configuration Generated:**
256256

257257
```json
258258
{
@@ -264,7 +264,7 @@ During the Windows setup, you'll be presented with two configuration methods:
264264
"env": {
265265
"CENTRALIZED_PROXY_PORT": "none",
266266
"FPD_PROXY_PORT": "8081",
267-
"INTERNAL_AUTH_SECRET": "your_selfgenerated_uspto_Cross_MCP_Shared_Secret"
267+
"INTERNAL_AUTH_SECRET": "[RANDOM GENERATED SHARED SECRET ACROSS ALL AUTHOR'S USPTO MCPS]"
268268
}
269269
}
270270
}
@@ -278,7 +278,7 @@ During the Windows setup, you'll be presented with two configuration methods:
278278
-**Direct Python execution**
279279
-**Simpler setup**
280280

281-
**Example Configuration Generated:**
281+
**Example Quick Start Windows Traditional Configuration Generated:**
282282

283283
```json
284284
{
@@ -527,6 +527,29 @@ Checking MCP server health...
527527
uspto_fpd: uv --directory /USER/uspto_fpd_mcp run fpd-mcp - ✓ Connected
528528
```
529529

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+
530553
## 🔧 Claude Code CLI Configuration (Alternative Method)
531554

532555
**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

Comments
 (0)