Use ACB Platform directly in your AI assistant. Search securities, calculate ACB, and manage portfolios with natural language.
macOS comes with Python, but you may need to install Python 3:
brew install python3
Clone the repository and install dependencies:
# Clone the repository
git clone https://gitlab.com/matthewlatimer/acb-update.git
cd acb-update/mcp-server
# Install dependencies
pip3 install -r requirements.txt
Add to ~/.claude/mcp_servers.json (for Claude Code):
{
"acbp": {
"command": "python3",
"args": ["/path/to/acb-update/mcp-server/server.py"],
"env": {
"ACBP_API_KEY": "your-api-key-here"
}
}
}
Create an API key from your ACB Platform dashboard, then restart your AI assistant.
# Ubuntu/Debian
sudo apt update && sudo apt install python3 python3-pip
# Fedora
sudo dnf install python3 python3-pip
# Arch
sudo pacman -S python python-pip
# Clone the repository
git clone https://gitlab.com/matthewlatimer/acb-update.git
cd acb-update/mcp-server
# Install dependencies
pip3 install -r requirements.txt
Add to ~/.claude/mcp_servers.json:
{
"acbp": {
"command": "python3",
"args": ["/home/youruser/acb-update/mcp-server/server.py"],
"env": {
"ACBP_API_KEY": "your-api-key-here"
}
}
}
Create an API key from your ACB Platform dashboard, then restart your AI assistant.
Download Python from python.org. Check "Add Python to PATH" during installation.
Open PowerShell or Command Prompt:
# Clone the repository
git clone https://gitlab.com/matthewlatimer/acb-update.git
cd acb-update\mcp-server
# Install dependencies
pip install -r requirements.txt
Add to %USERPROFILE%\.claude\mcp_servers.json:
{
"acbp": {
"command": "python",
"args": ["C:\\Users\\YourUser\\acb-update\\mcp-server\\server.py"],
"env": {
"ACBP_API_KEY": "your-api-key-here"
}
}
}
Create an API key from your ACB Platform dashboard, then restart your AI assistant.
Our MCP server works with any tool that supports the Model Context Protocol.
MCP is an open protocol. Any AI assistant that implements MCP can use our server. Learn more about MCP →