Skip to content

DRAFT RFC - Supported URI Schemes for Server #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,27 @@ components:
type: string
format: uri
example: "https://mcp-fs.example.com/sse"


UriScheme:
type: object
required:
- scheme
- description
properties:
scheme:
type: string
description: "The URI scheme without colon (e.g., 'mcp-filesystem', 'crm-contacts')"
example: "file"
description:
type: string
description: "Brief description of the URI scheme's purpose in this server"
example: "Local filesystem access"
reference_url:
type: string
format: uri
description: "URL to the specification or documentation for this URI scheme"
example: "(e.g. JSON Schema Store, IANA, PyPI/NPM, MCP Registry)"

ServerDetail:
allOf:
- $ref: '#/components/schemas/Server'
Expand All @@ -339,7 +359,12 @@ components:
type: array
items:
$ref: '#/components/schemas/Package'
remotes:
type: array
items:
$ref: '#/components/schemas/Remote'
remotes:
type: array
items:
$ref: '#/components/schemas/Remote'
supported_uri_schemes:
type: array
description: "URI schemes supported by this MCP server"
items:
$ref: '#/components/schemas/UriScheme'