Skip to content

Commit 75a4541

Browse files
committed
docs: polish client cookbook validation
Use standard authentication terminology and propagate direct test failures through the process exit code. Tests: Docker lint and documentation unit suite (6 passed)
1 parent 19de9b5 commit 75a4541

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

__tests__/unit/documentation.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,5 +193,7 @@ export async function runTests(): Promise<TestResult> {
193193
}
194194

195195
if (process.argv[1] !== undefined && fileURLToPath(import.meta.url) === process.argv[1]) {
196-
runTests();
196+
runTests().then((testResults) => {
197+
process.exit(testResults.failed > 0 ? 1 : 0);
198+
}).catch(console.error);
197199
}

docs/client-configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ that the client can never support it.
3131
| Cline | Yes | Yes | Yes |
3232
| OpenCode | Yes | Yes | Yes |
3333

34-
Claude Desktop remote connectors accept authless or OAuth servers, but a
34+
Claude Desktop remote connectors accept unauthenticated or OAuth servers, but a
3535
network-exposed `mcp-searxng` server uses its own static bearer-token hardening.
3636
Cursor's current remote MCP documentation likewise specifies OAuth. Because
3737
`mcp-searxng` does not implement MCP OAuth, this cookbook keeps both clients on

0 commit comments

Comments
 (0)