aide
Verified Safeby CrowdHailer
Overview
Provides a framework and an example for building Model Context Protocol (MCP) servers, demonstrating simple mathematical tools like addition and random number generation for integration with AI agents.
Installation
gleam runSecurity Notes
The server's logic is simple and self-contained, implementing basic arithmetic and random number generation without external API calls, file system access, or database interactions. JSON-RPC decoding uses a controlled Gleam library, mitigating injection risks. No 'eval' or similar dangerous functions are used, and there are no apparent hardcoded secrets or malicious patterns in the provided code.
Similar Servers
fastmcp
FastMCP is a Python framework designed for developing, deploying, and managing AI agents and their components (tools, resources, prompts) following the Model Context Protocol (MCP). It provides both client-side functionalities for interacting with MCP servers and server-side capabilities for hosting and serving these components. Key features include flexible transport options, authentication, background task management (SEP-1686), and an OpenAPI integration for proxying REST APIs as MCP tools.
tmcp
Build Model Context Protocol (MCP) servers for AI agents, enabling them to access context and execute tools.
rust-mcp-schema
Provides a type-safe Rust implementation of the Model Context Protocol (MCP) schema for building LLM applications and integrating with external data sources and tools. It facilitates serialization and deserialization of MCP messages.
compound-mcp-server
Provides a Model Context Protocol (MCP) server for interacting with Groq models, enabling clients to access Groq's compound/meta models with real-time information retrieval and code execution capabilities.