arb-mcp-server
Verified Safeby setsail-it
Overview
This server provides specialized tools for AI agents, including fetching keyword search volume from DataForSEO, managing HTML artifacts in a PostgreSQL database, retrieving client-specific information and writing rules, generating images via Google Gemini, and managing client discovery documents.
Installation
python server.pyEnvironment Variables
- DATAFORSEO_API_KEY
- DATABASE_URL
- GOOGLE_API_KEY
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_S3_BUCKET
- AWS_REGION
- PORT
Security Notes
The server loads all sensitive credentials (API keys, database URL) from environment variables, which is good practice. Database interactions use parameterized SQL queries, mitigating common SQL injection risks through data values. The process for updating discovery documents correctly maps internal Python parameter names to database columns, and explicitly parses/re-dumps JSON input, further reducing injection vectors. External API calls are handled via standard HTTP requests with API keys in headers. No use of 'eval' or other obviously dangerous functions was found. The main security concern would be improper configuration of AWS S3 bucket policies (e.g., overly permissive public access) for image hosting, but this is an infrastructure concern outside the code itself.
Similar Servers
freqtrade-mcp
Integrates an AI agent with the Freqtrade cryptocurrency trading bot to enable automated trading operations via its REST API.
finance-trading-ai-agents-mcp
A specialized MCP server for financial analysis and quantitative trading, designed to deploy local financial MCP services with a departmental architecture for LLM integration and algorithmic trading.
openmarkets
Provides a Model Context Protocol (MCP) server for agentic retrieval of financial market data from Yahoo Finance, facilitating integration with LLMs and AI applications.
ai-trading-mcp-server
AI-powered cryptocurrency trading assistant for real-time market analysis, signal generation, and trade execution.