Skip to content

chore(main): release 0.1.9 #40

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

Merged

Conversation

hashemix
Copy link
Member

@hashemix hashemix commented Feb 28, 2025

🤖 Automated release created! 🚀

0.1.9 (2025-03-02)

Features

  • introduce CallToolError (#39) (7b8672d)

  • new cunstructor and conversion utilities for call tool operations (#41) (0b8f622)

    Details Usage example:
    • Return a Unknown Tool Error
     async fn handle_call_tool_request(
            &self,
            request: CallToolRequest,
        ) -> Result<CallToolResult, CallToolError> {
    
           ////............
    
           return Err(CallToolError::unknown_tool(tool_name)),
    
    }
    • Return a CallToolResult with TextContent :
    async fn handle_call_tool_request(
            &self,
            request: CallToolRequest,
        ) -> Result<CallToolResult, CallToolError> {
    
           ////............
    
           return Ok(CallToolResult::text_content(
                        format!( "Successfully created directory {}", path),
                        None,
                    ));
    
    }

Bug Fixes

  • add missing MCPMessage trait for MessageFromClient (#43) (48dc8af)

This PR was generated with Release Please. See documentation.

@hashemix hashemix force-pushed the release-please--branches--main--components--rust-mcp-schema branch from f4bbe09 to e3f9830 Compare March 2, 2025 16:31
@hashemix hashemix force-pushed the release-please--branches--main--components--rust-mcp-schema branch from e3f9830 to 0c9bf20 Compare March 2, 2025 21:34
@hashemix hashemix merged commit c2408c1 into main Mar 2, 2025
6 checks passed
@hashemix
Copy link
Member Author

hashemix commented Mar 2, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant