pub struct McpToolEntry {
pub name: String,
pub description: String,
pub server_name: String,
pub input_schema: Option<Value>,
pub tags: Vec<String>,
pub discovered_at: String,
}Expand description
Represents an indexed MCP tool from configured servers.
This type is used to store and search available MCP tools, making them discoverable via the terraphim search system.
§Examples
use terraphim_types::McpToolEntry;
let tool = McpToolEntry {
name: "search_files".to_string(),
description: "Search for files matching a pattern".to_string(),
server_name: "filesystem".to_string(),
input_schema: None,
tags: vec!["filesystem".to_string(), "search".to_string()],
discovered_at: "2025-01-15T10:30:00Z".to_string(),
};Fields§
§name: StringThe name of the tool
description: StringDescription of what the tool does
server_name: StringName of the MCP server that provides this tool
input_schema: Option<Value>JSON schema for the tool’s input parameters
Tags for categorizing and searching tools
discovered_at: StringISO 8601 timestamp when the tool was discovered/indexed
Implementations§
Source§impl McpToolEntry
impl McpToolEntry
Sourcepub fn with_schema(self, schema: Value) -> McpToolEntry
pub fn with_schema(self, schema: Value) -> McpToolEntry
Add an input schema to the tool
Add tags to the tool
Sourcepub fn search_text(&self) -> String
pub fn search_text(&self) -> String
Get a search string for this tool (name + description + tags)
Trait Implementations§
Source§impl Clone for McpToolEntry
impl Clone for McpToolEntry
Source§fn clone(&self) -> McpToolEntry
fn clone(&self) -> McpToolEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for McpToolEntry
impl Debug for McpToolEntry
Source§impl<'de> Deserialize<'de> for McpToolEntry
impl<'de> Deserialize<'de> for McpToolEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<McpToolEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<McpToolEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for McpToolEntry
Source§impl PartialEq for McpToolEntry
impl PartialEq for McpToolEntry
Source§fn eq(&self, other: &McpToolEntry) -> bool
fn eq(&self, other: &McpToolEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for McpToolEntry
impl Serialize for McpToolEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for McpToolEntry
Auto Trait Implementations§
impl Freeze for McpToolEntry
impl RefUnwindSafe for McpToolEntry
impl Send for McpToolEntry
impl Sync for McpToolEntry
impl Unpin for McpToolEntry
impl UnsafeUnpin for McpToolEntry
impl UnwindSafe for McpToolEntry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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