
Research
/Security News
Malicious Chrome and Firefox Extensions Steal Crypto Traders’ Session and Wallet Data
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.
@lician/mcp-server
Advanced tools
MCP server for Lician Financial Data API - Access stock prices, financials, insider trades, and institutional holdings through AI agents
Model Context Protocol (MCP) server for the Lician Financial Data API. Enables AI agents like Claude, GPT, and Gemini to access real-time stock prices, financial statements, insider trades, and institutional holdings.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"lician": {
"command": "npx",
"args": ["@lician/mcp-server"],
"env": {
"LICIAN_API_KEY": "your-api-key-optional"
}
}
}
}
npm install -g @lician/mcp-server
Then run:
lician-mcp
git clone https://github.com/lician/mcp-server
cd mcp-server
npm install
npm run build
npm start
| Tool | Description |
|---|---|
get_stock_price | Current price, daily change, volume, market cap |
get_historical_prices | Historical OHLCV data for charts and analysis |
| Tool | Description |
|---|---|
get_income_statement | Revenue, gross profit, operating income, net income, EPS |
get_balance_sheet | Assets, liabilities, equity, cash, debt |
get_cash_flow | Operating, investing, financing cash flows, FCF |
get_financial_metrics | P/E, P/B, ROE, ROA, margins, dividend yield |
| Tool | Description |
|---|---|
get_insider_trades | SEC Form 4 buys/sells by executives and directors |
| Tool | Description |
|---|---|
get_institutional_holders | 13F institutional ownership for a stock |
get_investor_portfolio | All holdings for a specific fund/investor |
| Tool | Description |
|---|---|
get_analyst_ratings | Buy/hold/sell ratings and price targets |
get_analyst_estimates | EPS and revenue estimates for upcoming quarters |
| Tool | Description |
|---|---|
get_company_info | Sector, industry, description, CEO, employees |
get_stock_news | Recent news articles and headlines |
get_sec_filings | 10-K, 10-Q, 8-K SEC filings |
| Tool | Description |
|---|---|
get_crypto_prices | Bitcoin, Ethereum, and major crypto prices |
get_interest_rates | Treasury yields and fed funds rate |
Once installed, you can ask Claude:
"What's Apple's current stock price and how has it performed?"
Claude will use get_stock_price to fetch:
{
"snapshot": {
"ticker": "AAPL",
"price": 185.92,
"day_change": 2.34,
"day_change_percent": 1.27,
"volume": 45234567,
"market_cap": 2890000000000
}
}
"Show me insider trading activity at Tesla"
Claude will use get_insider_trades:
{
"insider_trades": [
{
"ticker": "TSLA",
"insider_name": "Elon Musk",
"insider_title": "CEO",
"transaction_type": "S-Sale",
"shares": 100000,
"price": 245.50,
"value": 24550000,
"filing_date": "2026-01-15"
}
]
}
"What stocks does Berkshire Hathaway own?"
Claude will use get_investor_portfolio:
{
"investor": "Berkshire Hathaway",
"total_value": 350000000000,
"holdings": [
{
"ticker": "AAPL",
"company_name": "Apple Inc.",
"shares": 905000000,
"value": 168000000000,
"percent_of_portfolio": 48.0
}
]
}
Set your API key as an environment variable:
export LICIAN_API_KEY=your-api-key
Or in Claude Desktop config:
{
"mcpServers": {
"lician": {
"command": "npx",
"args": ["@lician/mcp-server"],
"env": {
"LICIAN_API_KEY": "your-api-key"
}
}
}
}
| Tier | Price | Requests/Day | Features |
|---|---|---|---|
| Free | $0 | 100 | US data, EOD prices |
| Basic | $29/mo | 10,000 | US + EU, real-time |
| Pro | $99/mo | 100,000 | All data, 13F, SEC |
Get an API key at lician.com/developers/signup
For complete API documentation, see:
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run production build
npm start
MIT
Built by Lician - AI-Powered Financial Data Platform
FAQs
MCP server for Lician Financial Data API - Access stock prices, financials, insider trades, and institutional holdings through AI agents
We found that @lician/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.