stock-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., "@stock-mcpWhat's the outlook for Apple stock?"
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.
stock-mcp
An MCP server that exposes DSA's 问股 (Agent Chat / ask-stock) capability as a cross-client tool.
What it does
Claude Desktop / Code / Cursor
|
| Streamable HTTP (MCP)
v
stock-mcp (this server)
|
| HTTP (REST)
v
DSA FastAPI API
|
/api/v1/agent/chat
/api/v1/agent/skillsask_stock — send a natural-language stock question, get the Agent Chat answer back.
list_agent_skills — list available strategy skills for
ask_stock.
Prerequisites
Python 3.11+
DSA API server running and reachable (e.g.
python main.py --serve-onlyinside thedaily_stock_analysisrepo, defaulthttp://127.0.0.1:8000).
Install
cd stock-mcp
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"Run
# With defaults (DSA on 127.0.0.1:8000, no auth)
python -m stock_mcp
# Or via the installed console script
dsa-mcp-server
# With env overrides
DSA_API_BASE_URL=http://127.0.0.1:8000 DSA_API_AUTH_ENABLED=true DSA_API_PASSWORD=xxx python -m stock_mcpEnvironment variables
Variable | Default | Description |
|
| DSA FastAPI base URL |
|
| MCP HTTP bind host |
|
| MCP HTTP bind port |
|
| MCP endpoint path |
|
| Whether DSA requires admin auth |
| (empty) | DSA admin password (required when auth enabled) |
|
| Timeout for short calls (skills, login) |
|
| Timeout for |
|
| Server log level |
Client configuration
Claude Desktop
Add to your claude_desktop_config.json (macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"dsa-ask-stock": {
"url": "http://127.0.0.1:8765/mcp",
"env": {
"DSA_API_BASE_URL": "http://127.0.0.1:8000",
"DSA_API_AUTH_ENABLED": "false"
}
}
}
}Claude Code
claude mcp add dsa-ask-stock http://127.0.0.1:8765/mcpCursor
In Settings → MCP, add a Streamable HTTP server pointing to http://127.0.0.1:8765/mcp.
Auth notes
If DSA is running with ADMIN_AUTH_ENABLED=true:
export DSA_API_AUTH_ENABLED=true
export DSA_API_PASSWORD="your-dsa-admin-password"
python -m stock_mcpThe server logs in once at startup via POST /api/v1/auth/login and reuses the session
cookie across tool calls.
Backend limitation
If DSA's AGENT_BACKEND is set to codex_app_server, ask_stock returns a clear error:
Codex requires the streaming Chat interface (/chat/stream), which is not exposed over
MCP in this tool. Switch AGENT_BACKEND to litellm (or auto) for MCP compatibility,
or use the DSA web Chat page directly.
Security
The server binds to 127.0.0.1 by default. Do not expose the MCP port publicly without
auth — the MCP transport is designed for local/loopback use.
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.
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/suanova/stock-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server