File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments