We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oculairmedia/Letta-MCP-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lib.rs•449 B
//! This crate provides a type [`ListOrderedMultimap`] which is a multimap that maintains insertion order across all
//! keys and values.
//!
//! See the type documentation for more information.
#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
pub mod list_ordered_multimap;
pub use self::list_ordered_multimap::ListOrderedMultimap;
#[cfg(feature = "serde")]
mod serde;