================== /// MCP /// /// INV /// ================== [server:online] [protocol:ready]
investor-agent
by ferdousbhai
A Financial Analysis MCP server providing ticker, options, historical data, statements, ownership, sentiment, and technical-analysis endpoints for LLMs.
225
33
Open SourceInstallation
1. Clone the repository:
git clone https://github.com/ferdousbhai/investor-agent.git
cd investor-agent
2. Create and activate a virtual environment (recommended):
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
3. Install the Python dependencies:
pip install -r requirements.txt
4. (Optional) Copy the example environment file and add your keys/secrets:
cp .env.example .env
# Edit .env to include any API keys (e.g., OPENAI_API_KEY) or broker credentials
5. Run database migrations or initialise any local storage if the project supplies a script such as:
python manage.py migrate # or a custom script noted in README
6. Start the MCP server:
python -m investor_agent.server # or the entry-point defined in README
7. Verify the server is running by opening http://localhost:8000/health or similar health-check endpoint.
Documentation
License: MIT License
Updated 7/30/2025