Trader Journal MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Trader Journal MCPanalyze my trading edge"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Aureon AI Trading Coach
An Open-Source Trading Intelligence Platform
Transform historical trading data into structured knowledge, behavioral insights, recurring patterns, and evidence-based coaching.
Version 1.0.0
Overview
Aureon AI Trading Coach is an open-source trading intelligence platform that helps traders understand why they win, why they lose, and how they can improve over time.
Unlike traditional trading journals that simply record historical trades, Aureon combines performance analytics, structured trade reviews, trader memory, pattern discovery, edge discovery, and AI-assisted coaching into a single intelligence platform.
Instead of focusing only on profit and loss, Aureon learns from the decisions behind every trade.
Its goal is simple:
Turn trading history into actionable knowledge.
Why Aureon?
Most trading software answers one question:
What happened?
Aureon is designed to answer a much more valuable question:
Why did it happen?
Every trade contains more information than its final result.
Aureon captures:
the reason a trade was taken
confidence before entry
emotional state
market context
post-trade reflections
trading outcome
These observations become structured knowledge that allows Aureon to identify recurring strengths, weaknesses, and genuine trading edges.
Core Capabilities
Related MCP server: BotSpot
š„ Trade Import
Import historical MetaTrader 5 (MT5) trading history into Aureon's database.
Current supported formats:
MetaTrader 5 CSV
Exness CSV
š Performance Analytics
Generate detailed trading statistics including:
Trading Summary
Win Rate
Net Profit
Profit Factor
Trading Expectancy
Risk-to-Reward Ratio
Drawdown Analysis
Equity Curve
Monthly Performance
Pair Performance
Trading Session Analysis
Day-of-Week Analysis
Trade Duration Analysis
š§ Guided Trade Reviews
Every completed trade can be reviewed using Aureon's structured review workflow.
Each review captures:
Entry Thesis
Confidence
Emotion
Reflection
These observations become permanent trading knowledge.
š Decision Records
Every reviewed trade becomes a structured decision record containing:
Trade Information
Entry Thesis
Emotional State
Confidence
Outcome
Reflection
Market Context
Decision records preserve far more information than a traditional trading journal.
š¾ Trader Memory
Aureon continuously builds trader memory.
Examples include:
recurring mistakes
repeated strengths
emotional tendencies
successful trading conditions
improvement opportunities
Instead of analyzing isolated trades, Aureon analyzes trading behaviour over time.
š Pattern Discovery
Identify recurring relationships between:
strategies
setups
emotions
trading sessions
market conditions
performance
Patterns are discovered from historical evidence rather than assumptions.
šÆ Edge Discovery
Aureon identifies statistically supported trading strengths by evaluating:
expectancy
profitability
consistency
drawdown
sample size
trading context
Winning percentage alone is never treated as a trading edge.
š¤ AI Trading Coach
The Aureon Coach combines every layer of intelligence to generate personalized coaching.
Examples include:
strongest trading edge
weakest recurring behaviour
best-performing strategy
best-performing setup
strongest market
strongest session
behavioural recommendations
evidence-based action plans
š FastAPI
Expose Aureon's intelligence engine through REST APIs.
š MCP Integration
Aureon includes full Model Context Protocol (MCP) support, allowing compatible AI assistants to access trading intelligence using natural language.
Example questions:
What is my expectancy?
What is my strongest setup?
What mistakes do I repeat?
What should I improve?
Which market performs best?
Architecture
MT5 History
ā
ā¼
Trade Import Engine
ā
ā¼
SQLite Database
ā
ā¼
Decision Records
ā
ā¼
Trader Memory
ā
ā¼
Pattern Discovery
ā
ā¼
Edge Discovery
ā
ā¼
Aureon AI Coach
āāāāāāāāāāāā
ā ā
ā¼ ā¼
FastAPI MCPTechnology Stack
Python
FastAPI
SQLite
SQLAlchemy
Pandas
Pydantic
FastMCP
HTTPX
Pytest
Project Status
Current Release
Version 1.0.0
Version 1 establishes Aureon's core intelligence architecture and includes:
Trade Import Engine
Performance Analytics
Behaviour Analytics
Guided Trade Reviews
Decision Records
Trader Memory
Pattern Discovery
Edge Discovery
AI Trading Coach
FastAPI
MCP Integration
Installation
Clone the Repository
git clone https://github.com/CepharsBonacci/aureon-ai-trading-coach.git
cd aureon-ai-trading-coachCreate a Virtual Environment
macOS / Linux
python3 -m venv venv
source venv/bin/activateWindows
python -m venv venv
venv\Scripts\activateInstall Dependencies
pip install -r requirements.txtQuick Start
1. Initialize the Database
python init_db.py2. Start the API
uvicorn server:app --reloadSwagger UI
http://127.0.0.1:8000/docsReDoc
http://127.0.0.1:8000/redoc3. Import MT5 History
Export your trading history from MetaTrader 5 or Exness as a CSV file.
Then import it using Aureon's Import endpoint.
Once imported, Aureon automatically computes:
Performance Metrics
Drawdown
Equity Curve
Expectancy
Behavioural Analytics
Trading Context
4. Complete Trade Reviews
After importing your trading history, Aureon identifies trades that have not yet been reviewed.
The review workflow captures information that your broker cannot know, including:
Entry Thesis
Confidence
Emotion
Reflection
These observations become permanent decision records.
5. Build Trader Memory
As additional trades are reviewed, Aureon begins identifying recurring patterns in your decision making.
Instead of evaluating isolated trades, Aureon learns how you trade over time.
6. Discover Your Edge
The AI Coach combines:
Performance Analytics
Behavioural Analytics
Trader Memory
Pattern Discovery
Decision Records
to identify statistically supported trading strengths and recurring weaknesses.
REST API
Aureon exposes its intelligence engine through FastAPI.
The API is organised into the following modules.
Performance
Trading Summary
Trading Statistics
Expectancy
Risk-Reward
Drawdown
Equity Curve
Executive Summary
Dynamic Recommendations
Behaviour
Revenge Trading Detection
Overtrading Detection
Context
Pair Performance
Session Performance
Day Performance
Trade Duration
Monthly Performance
Observations
Save Trade Observations
Observation Summary
Trade Reviews
Pending Reviews
Review Status
Review Questions
Submit Answers
Finish Review
Trader Memory
Memory Summary
Aureon Intelligence
Decision Records
Reviewed Trades
Edge Discovery
AI Coach Report
Model Context Protocol (MCP)
Aureon includes an MCP server allowing compatible AI assistants to access your trading knowledge using natural language.
Examples include:
What is my current expectancy?
Which market performs best?
Show my strongest trading edge.
Which emotional state hurts my performance?
Summarise my trader memory.
What recurring mistakes should I eliminate?
Rather than searching dashboards, traders can interact conversationally with their trading history.
Project Structure
aureon-ai-trading-coach/
ā
āāā app/
ā āāā analytics.py
ā āāā imports.py
ā āāā models.py
ā āāā database.py
ā ā
ā āāā intelligence/
ā ā coach.py
ā ā review_engine.py
ā ā trader_memory.py
ā ā observations.py
ā ā decision_record.py
ā ā edge_engine.py
ā ā pattern_engine.py
ā ā
ā āāā routes/
ā ā performance.py
ā ā behaviour.py
ā ā context.py
ā ā imports.py
ā ā observations.py
ā ā review.py
ā ā trader_memory.py
ā ā intelligence.py
ā
āāā db/
āāā mcp_server/
āāā requirements.txt
āāā server.py
āāā README.mdRoadmap
Version 1.1
Live MetaTrader 5 Integration
Persistent Review Sessions
Better AI Coaching Explanations
Improved Edge Confidence
Version 1.2
Multi-Account Support
Portfolio Analytics
Interactive Dashboard
Trade Screenshot Support
Future Vision
Aureon AI Trading Coach is the first product in the Aureon ecosystem.
Future projects include:
Aureon Intelligence Engine (AIE)
Institutional Analytics
Portfolio Intelligence
Cloud Synchronisation
Mobile Applications
Multi-Broker Support
AI Research Assistant
Team Collaboration
Contributing
Contributions are welcome.
Whether you are fixing bugs, improving documentation, proposing ideas, or building new features, your contributions help improve Aureon for the entire trading community.
Please open an issue before making significant architectural changes.
License
This project is licensed under the MIT License.
You are free to use, modify, distribute, and build upon this software in accordance with the terms of the license.
See the LICENSE file for details.
Author
Cephars Bonacci
Founder ā Aureon Capital AI
GitHub
https://github.com/CepharsBonacci
Vision
Most trading software tells you what happened.
Aureon is built to help you understand why it happened.
By combining structured trade reviews, trader memory, behavioural analysis, performance analytics, pattern discovery, edge discovery, and AI coaching, Aureon transforms historical trading activity into actionable intelligence that helps traders continuously improve their decision making.
Acknowledgements
Aureon AI Trading Coach was built with the belief that trading success comes not only from analysing markets, but from understanding the decisions behind every trade.
Historical data becomes valuable when it is transformed into knowledge.
Knowledge becomes valuable when it improves future decisions.
That is the mission of Aureon.
Aureon AI Trading Coach
Version 1.0.0
"Transforming Trading History into Trading Intelligence."
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server that provides AI trading agents with persistent, outcome-weighted memory to learn from historical performance and detect behavioral biases. It enables agents to automatically adjust strategies and optimize position sizing based on context-aware recall of past trade outcomes.201,408MIT
- Flicense-qualityDmaintenanceFull-lifecycle algorithmic trading MCP server. AI strategy generation from plain English, backtesting, live bot deployment to 10+ brokers, portfolio monitoring, and prediction markets. Stocks, options, crypto, futures. 32 tools. Free tier.
- Alicense-qualityCmaintenanceEnables AI-driven quant research by exposing backtesting, portfolio optimization, and performance analytics tools through MCP, allowing iterative strategy refinement with built-in overfitting guardrails.MIT
- AlicenseBqualityDmaintenanceAI-powered trading toolkit with backtesting, live sentiment, Yahoo Finance, and 30+ technical analysis tools for MCP clients.273MIT
Related MCP Connectors
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Hosted MCP for stocks, options, Greeks, brokers, order previews, alerts, and workflows.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CepharsBonacci/aureon-ai-trading-coach'
If you have feedback or need assistance with the MCP directory API, please join our Discord server