flight_agent
Verified Safeby fw2274
Overview
A multi-agent system enabling voice or text-activated flight searches using LLMs, real-time APIs, and local speech recognition.
Installation
python3 flight_search_vtt.py --voiceEnvironment Variables
- GOOGLE_API_KEY
- AMADEUS_API_KEY
- AMADEUS_API_SECRET
Security Notes
The project uses environment variables for API keys (GOOGLE_API_KEY, AMADEUS_API_KEY, AMADEUS_API_SECRET), which is a good practice. Communication with the local Rust-based voice-to-text MCP server happens over stdin/stdout via JSON-RPC, which is relatively secure for local inter-process communication. External API calls (Amadeus, Google Gemini) inherently introduce third-party risks, but are standard practice. No obvious 'eval' or malicious patterns found in the provided Python code.
Similar Servers
ddg_search
Provides an MCP server for web search via DuckDuckGo and AI-powered answers from IAsk AI and Monica.
mcpc
A framework for building agentic Model Context Protocol (MCP) servers by composing existing MCP tools. It enables the creation of portable, interoperable AI agents with flexible execution modes and robust logging/tracing capabilities.
mcp-ai-agent
This repository provides an AI agent designed to interact with and control entities within a Multi-Client Protocol (MCP) environment, likely a game or simulation.
spring-boot-ai
Provides a remote booking tool via the Model Context Protocol (MCP) for an AI agent.