getResourceReference
Retrieve a resource reference for MCP clients by specifying a resource ID (1-100), enabling dynamic user input collection in the MCP Elicitations Demo Server.
Instructions
Returns a resource reference that can be used by MCP clients
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resourceId | Yes | ID of the resource to reference (1-100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"resourceId": {
"description": "ID of the resource to reference (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"resourceId"
],
"type": "object"
}