Skip to content

Commit 5d65783

Browse files
committed
OpenAI MCP domain verification
1 parent 2b0490a commit 5d65783

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.changeset/few-cats-lick.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,11 @@ if (mcpTransport === 'http') {
713713
httpApp.get(path, (c) => c.json(protectedResourceDoc))
714714
}
715715

716+
// OpenAI domain verification challenge
717+
httpApp.get('/.well-known/openai-apps-challenge', (c) =>
718+
c.text('ryakzvxhOuUz_i_9ehoMOp-utTItOQZopqyeLlxPTwI')
719+
)
720+
716721
// MCP Streamable HTTP endpoint
717722
httpApp.post('/mcp', async (c) => {
718723
const authHeader = c.req.header('Authorization') || ''

0 commit comments

Comments
 (0)