Signal Scanner
@cstamigo-droid
About Signal Scanner
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"signal-scanner": {
"command": "python",
"args": [
"-m",
"signal_scanner"
],
"cwd": "C:/path/to/signal-scanner"
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Signal Scanner?
Signal Scanner is a rule-based stock and cryptocurrency screener that pulls market data via yfinance, computes technical indicators, and alerts you when symbols match your custom rules. It works on the command line, via Telegram push, or as an MCP tool for Claude Desktop/Claude Code.
How to use Signal Scanner?
Install the Python dependencies (pip install -r requirements.txt), then define a watchlist (plain text) and a ruleset (YAML). Run a one‑shot scan with python -m signal_scanner, use --watch for continuous polling, add --notify for Telegram alerts, or configure it as an MCP server in Claude Desktop’s JSON config. Clients only ever edit watchlist.txt and rules.yaml—the engine code stays untouched.
Key features of Signal Scanner
- Keyless by default (uses yfinance, no API key needed).
- No‑code rule editing via plain YAML conditions.
- Honest signals: indicators computed from closed bars, never faked missing data.
- Three output surfaces: CLI, Telegram, and MCP
scantool. - Supports stocks, ETFs, FX (
EURUSD=X), and crypto (BTC-USD).
Use cases of Signal Scanner
- Define a watchlist of stocks and receive Telegram alerts when oversold conditions trigger.
- Run a continuous scan on a server and let Claude Desktop call the
scantool on demand. - Reskin the scanner for different clients by swapping only the watchlist and rules files.
- Perform ad‑hoc scans of specific symbols (e.g.,
python -m signal_scanner AAPL MSFT BTC-USD).
FAQ from Signal Scanner
Do I need an API key to get market data?
No. Signal Scanner uses yfinance, which is free and requires no API key.
What data sources are supported?
yfinance is the default backend, supporting stocks, ETFs, FX pairs (e.g., EURUSD=X), and cryptocurrencies (e.g., BTC-USD).
How do I receive Telegram notifications?
Create a bot via @BotFather, get your chat ID from @userinfobot, then set TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID in the .env file. Run the scanner with the --notify flag.
Which indicators can I use in rules?
Price, percentage change, RSI, fast and slow SMAs, SMA crossover (golden/death), volume ratio vs. 20-day average, and percentage from 52‑week high/low.
How do I run Signal Scanner as an MCP server?
Add an entry to your Claude Desktop claude_desktop_config.json with command python, args ["-m", "signal_scanner.server"], and the correct working directory. Then ask Claude to “run my scanner” or request signals on specific symbols.
More Other MCP servers
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
ICSS
chokcoco不止于 CSS
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Nginx UI
0xJackyYet another WebUI for Nginx
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
Comments