What if your AI agent could track what Warren Buffett is buying — in real time?
That is exactly what the AlphaSMO MCP server unlocks.
You have probably heard about the Model Context Protocol (MCP) — the open standard that lets AI agents like Claude, ChatGPT, and Cursor talk to external tools and APIs. Instead of hallucinating answers or being stuck with stale training data, an MCP-equipped agent can reach out to live data sources and pull back real, structured information mid-conversation.
But most MCP servers today are built for developer tools — file systems, databases, GitHub, Postgres. Few bring real-world financial intelligence to your AI agent.
That is where AlphaSMO comes in.
What is AlphaSMO?
.
One Command to Get Started
No signup. No API key. No credit card. Just run:
npx alphasmo convergence --limit 5
This prints a table of the top tickers where smart money is converging right now. Here is what real output looks like:
Ticker Issuer Net Flow (USD) Confidence
BRK-A BERKSHIRE HATHAWAY INC-CL A 247,455,256,379 94
NVDA NVIDIA CORP 52,103,888,155 92
META META PLATFORMS INC 38,033,517,696 90
AMZN AMAZON COM INC 35,611,305,945 88
AVGO BROADCOM INC 31,209,512,395 87
Your AI agent sees the EXACT same structured data.
Wiring It Into Your AI Agent
Claude Code (recommended)
claude mcp add alphasmo -- npx -y alphasmo@latest mcp
Claude Desktop / Cursor / Any MCP Client
{
"mcpServers": {
"alphasmo": {
"command": "npx",
"args": ["alphasmo", "mcp"],
"env": {
"ALPHASMO_API_KEY": "your-free-key-here"
}
}
}
}
Programmatic Use (TypeScript)
import { AlphasmoClient } from "alphasmo";
const client = new AlphasmoClient();
const convergence = await client.getSmartMoneyConvergence({ limit: 5 });
console.log(convergence);
Python client also available — see
Then set it and forget it:
export ALPHASMO_API_KEY=ask_live_...
The Bottom Line
AI agents are only as good as the data they can access. MCP is the protocol that connects them to the real world. And AlphaSMO is the MCP server that connects them to the $45 trillion world of institutional money flows.
Stop asking your AI to guess what smart money is doing. Give it the tools to know.
npx alphasmo convergence --limit 10
Disclaimer: This article is for informational and educational purposes only. It does not constitute investment advice. Past institutional behavior does not guarantee future results. 13F data has a 45-day filing delay. Always do your own research.
SOCIAL SHARE CARD GENERATOR