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 2b0490a commit 5d65783Copy full SHA for 5d65783
2 files changed
.changeset/few-cats-lick.md
@@ -0,0 +1,10 @@
1
+---
2
+'@rushdb/mcp-server': patch
3
+'rushdb-docs': patch
4
+'@rushdb/javascript-sdk': patch
5
+'@rushdb/skills': patch
6
+'rushdb-core': patch
7
+'rushdb-dashboard': patch
8
9
+
10
+OpenAI MCP domain verification
packages/mcp-server/index.ts
@@ -713,6 +713,11 @@ if (mcpTransport === 'http') {
713
httpApp.get(path, (c) => c.json(protectedResourceDoc))
714
}
715
716
+ // OpenAI domain verification challenge
717
+ httpApp.get('/.well-known/openai-apps-challenge', (c) =>
718
+ c.text('ryakzvxhOuUz_i_9ehoMOp-utTItOQZopqyeLlxPTwI')
719
+ )
720
721
// MCP Streamable HTTP endpoint
722
httpApp.post('/mcp', async (c) => {
723
const authHeader = c.req.header('Authorization') || ''
0 commit comments