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
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.
python-mcp-agent-workshop
Implements an MCP server with a keyword search tool for AI agents to analyze codebases and provide insights.
mcp-marketplace
A comprehensive AI agent framework that facilitates tool orchestration and access to a marketplace of MCP (Model Context Protocol) servers, offering a web-based client for chat, administration, and benchmarking.
agents-mcp-usage
This repository demonstrates the integration of a Model Context Protocol (MCP) server with various AI agent frameworks, showcasing agent communication and operation within a shared context.