MCP Trader Server
A Model Context Protocol (MCP) server for stock traders
Overview
MCP Trader Server is a Model Context Protocol (MCP) server designed for stock traders to perform technical analysis on various stock symbols.
To use the MCP Trader Server, set up the environment with the required dependencies, configure the API key, and run the server. You can then analyze stocks by sending commands through the Claude Desktop application.
- Analyze Stock Tool: Performs comprehensive technical analysis on stock symbols. - Technical Indicators: Provides moving averages, momentum indicators, volatility metrics, and volume analysis. - User-Friendly Setup: Easy installation and configuration process.
- Analyzing the technical setup for stocks like NVDA.
- Performing detailed financial analysis for investment decisions.
- Integrating with trading platforms for automated stock analysis.
Add to your AI client
Use these steps to connect MCP Trader Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-trader-wshobson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-trader-wshobson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-trader-wshobson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-trader-wshobson": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-trader-wshobson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-trader-wshobson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-trader-wshobson"
]
}
}
}FAQ
**What programming language is used?**
The server is built using Python.
**Do I need an API key?**
Yes, a Tiingo API key is required for accessing stock data.
**Can I run this on Windows?**
Yes, the server can be set up and run on Windows as well as MacOS.