MCP Elicitation
Elicitation is a mechanism where MCP servers can request additional information from the client during tool execution. This example demonstrates how to handle elicitation requests, such as collecting user registration information.
Example: User Registration
This example shows how to set up an MCP client to handle elicitation requests from a server that needs to collect user input.
import { experimental_createMCPClient as createMCPClient, ElicitationRequestSchema,} from '@ai-sdk/mcp';import { generateText } from 'ai';
// Create the MCP client with elicitation capability enabledconst mcpClient = await createMCPClient({ transport: { type: 'sse', url: 'http://localhost:8083/sse', }, capabilities: { elicitation: {}, },});
// Register a handler for elicitation requestsmcpClient.onElicitationRequest(ElicitationRequestSchema, async request => { console.log('Server is requesting:', request.params.message); console.log('Expected schema:', request.params.requestedSchema);
// Collect user input according to the schema // This is where you would implement your own logic to prompt the user const userData = await promptUserForInput(request.params.requestedSchema);
// Return the result with one of three actions: // - 'accept': User provided the requested information // - 'decline': User chose not to provide the information // - 'cancel': User cancelled the operation entirely return { action: 'accept', content: userData, };});
try { const tools = await mcpClient.tools();
const { text } = await generateText({ model: 'openai/gpt-4o-mini', tools, prompt: 'Register a new user account', });
console.log('Response:', text);} finally { await mcpClient.close();}
// Example implementation of promptUserForInputasync function promptUserForInput( schema: unknown,): Promise<Record<string, unknown>> { // Implement your own logic to collect input based on the schema // This could be: // - A CLI prompt using readline // - A web form // - A GUI dialog // - Any other input mechanism
// For this example, we'll return mock data return { username: 'johndoe', email: 'john@example.com', password: 'securepassword123', newsletter: true, };}Elicitation Response Actions
Your handler must return an object with an action field:
'accept': User provided the requested information. Must includecontentwith the data.'decline': User chose not to provide the information.'cancel': User cancelled the operation entirely.
Important Notes
It is up to the client application to handle elicitation requests properly. The MCP client simply surfaces these requests from the server to your application code.
The elicitation handler should:
- Parse the
request.params.requestedSchemato understand what data the server needs - Implement appropriate user input collection (CLI, web form, etc.)
- Validate the input matches the requested schema
- Return the appropriate action and content