Skip to content

Commit 00c2d44

Browse files
committed
fix: resource url per tightening vscode security
1 parent 89b385d commit 00c2d44

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ A Model Context Protocol (MCP) server that provides secure DocuSign Navigator in
1010
- **MCP Protocol Compliance**: Full compatibility with Model Context Protocol standards
1111
- **Real-time Data Access**: Live connection to DocuSign Navigator for up-to-date information
1212

13+
## Routes
14+
15+
API Routes
16+
├── Health & Monitoring
17+
│ └── GET /health
18+
19+
├── OAuth 2.0 Discovery (.well-known)
20+
│ ├── GET /.well-known/oauth-authorization-server
21+
│ └── GET /.well-known/oauth-protected-resource
22+
23+
├── OAuth 2.0 Flow
24+
│ ├── GET/POST /register
25+
│ ├── GET /authorize
26+
│ ├── POST /token
27+
│ └── GET /auth/callback
28+
29+
└── MCP (Model Context Protocol)
30+
└── POST /mcp Main endpoint
31+
1332
## Quick Start
1433

1534
### Server URL

api/well-known/oauth-protected-resource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export async function GET(request: Request) {
3030

3131
const origin = new URL(request.url).origin;
3232
const metadata = {
33-
resource: `${origin}/`,
33+
resource: `${origin}/mcp`,
3434
authorization_servers: [origin],
3535
scopes_supported: [
3636
...oauth_integration.scopes.required,

0 commit comments

Comments
 (0)