-
Notifications
You must be signed in to change notification settings - Fork 35
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
feat: Add completion and resource template support #7
base: main
Are you sure you want to change the base?
feat: Add completion and resource template support #7
Conversation
- Add support for MCP completions - Implement URI templates for dynamic resources - Add completion handlers for prompts and resources - Update documentation with new features and examples This implementation follows the MCP specification for completions and resource templates while maintaining backwards compatibility.
Following the initial implementation, I'm adding these type safety improvements
For example, with this improvement: interface GreetingInput {
language: z.ZodString;
count: z.ZodNumber;
} TypeScript will properly type |
d31f7fa
to
b87d2d6
Compare
Improve type safety for completions in both prompts and resources: - Add generic type parameters to PromptProtocol and ResourceProtocol - Add type-safe argument completion methods with proper inference - Update MCPServer to handle typed protocols - Add schema validation in completion methods This ensures completion arguments and values maintain proper typing throughout the completion flow.
This looks sweet, thanks for your contribution @gavinaboulhosn - I'll try to review this over the following 24 hours |
I'm going to tests this a little more. There isn't support for completions in tools like MCP inspector so I'm working on potentially opening a PR there to help me verify these changes. |
Got it - sorry I haven't been able to get to this yet. How can I verify that this works? What's your email / discord? I'd love to connect and chat thru these changes and see how I can help. Would love to add more features to mcp inspector too |
This implementation follows the MCP specification for completions and resource templates
References:
https://spec.modelcontextprotocol.io/specification/server/resources/#resource-templates
https://spec.modelcontextprotocol.io/specification/server/utilities/completion/