pub struct ThoughtsMcpTools;
Implementations§
Source§impl ThoughtsMcpTools
impl ThoughtsMcpTools
Sourcepub async fn write_document(
&self,
doc_type: DocumentType,
filename: String,
content: String,
) -> Result<String, ToolError>
pub async fn write_document( &self, doc_type: DocumentType, filename: String, content: String, ) -> Result<String, ToolError>
Write markdown to active work directory (research/plans/artifacts)
Sourcepub async fn list_active_documents(
&self,
subdir: Option<DocumentType>,
) -> Result<Vec<DocumentInfo>, ToolError>
pub async fn list_active_documents( &self, subdir: Option<DocumentType>, ) -> Result<Vec<DocumentInfo>, ToolError>
List files in current active work directory
Source§impl ThoughtsMcpTools
impl ThoughtsMcpTools
Sourcepub async fn handle_mcp_call(
&self,
method: &str,
params: Value,
) -> Result<Value, ToolError>
pub async fn handle_mcp_call( &self, method: &str, params: Value, ) -> Result<Value, ToolError>
Handles MCP tool calls by dispatching to the appropriate tool method Users integrate this into their MCP server implementation
Sourcepub fn get_mcp_tools(&self) -> Vec<Value>
pub fn get_mcp_tools(&self) -> Vec<Value>
Returns tool definitions for MCP discovery Users can use this to implement list_tools in their ServerHandler
Trait Implementations§
Source§impl Clone for ThoughtsMcpTools
impl Clone for ThoughtsMcpTools
Source§fn clone(&self) -> ThoughtsMcpTools
fn clone(&self) -> ThoughtsMcpTools
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ThoughtsMcpTools
impl Default for ThoughtsMcpTools
Source§fn default() -> ThoughtsMcpTools
fn default() -> ThoughtsMcpTools
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ThoughtsMcpTools
impl RefUnwindSafe for ThoughtsMcpTools
impl Send for ThoughtsMcpTools
impl Sync for ThoughtsMcpTools
impl Unpin for ThoughtsMcpTools
impl UnwindSafe for ThoughtsMcpTools
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more