Profitelligence Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Profitelligence Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<p align="center"> <img src="assets/logo.png" alt="Profitelligence" width="200" /> </p>
<h1 align="center">Profitelligence MCP Server</h1>
<p align="center">
Financial intelligence for AI agents. Give Claude access to insider trading data, SEC filings, economic indicators, and multi-signal analysis — all through a single MCP server.
Get Started Free · View Pricing
Traditional financial APIs return mountains of raw data. Your AI agent burns through tokens parsing CSVs, making repeated calls, and piecing together context. Profitelligence is different.
We provide semantically dense, LLM-optimized responses designed for AI agents:
| Traditional MCP Servers | Profitelligence MCP |
|---|---|
| Many narrow tools (10-20+) | 7 powerful tools with rich filtering |
| Raw data dumps | Pre-contextualized intelligence |
| Multiple calls to answer one question | One call, complete answer |
| Token-heavy responses | Optimized for token efficiency |
| Complex tool orchestration | Agent has full control |
This MCP server is a thin, stateless layer over Profitelligence's REST APIs:
The easiest way to get started:
No API key needed — authentication is handled automatically.
#### 1. Create a Free Account
Sign up at [profitelligence.com](https://profitelligence.com) — no credit card required.
The free tier includes:
#### 2. Get Your API Key
Generate an API key from your account dashboard.
#### 3. Add to Claude
Claude Desktop (easiest):
Go to Settings → Connectors → Add Custom Connector and paste this URL:
https://mcp.profitelligence.com/mcp?apiKey=YOUR_API_KEYReplace YOUR_API_KEY with your key (e.g. pk_live_abc123...). That's it — start chatting.
Claude Desktop (config file alternative):
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"profitelligence": {
"url": "https://mcp.profitelligence.com/mcp?apiKey=YOUR_API_KEY",
"transport": "streamable-http"
}
}
}Claude Code (one-liner):
claude mcp add profitelligence --transport http \
https://mcp.profitelligence.com/mcp \
--header "X-API-Key: YOUR_API_KEY"That's it! Ask Claude: "What insider buying happened in tech stocks this week?"
| Feature | Free | PRO ($4.99/mo) | Elite ($9.99/mo) |
|---|---|---|---|
| Stock coverage | Top 500 | Top 6,000 | All stocks |
| API calls | 250/day | 1,000/day | 10,000/day |
| Insider trading (Form 4) | ✅ | ✅ | ✅ |
| SEC 8-K summaries | ✅ | ✅ | ✅ |
| Economic indicators | ✅ | ✅ | ✅ |
| Opportunity scoring | — | ✅ | ✅ |
| Multi-signal analysis | — | ✅ | ✅ |
| Alert subscriptions | — | 10 alerts | Unlimited |
| Priority support | — | — | ✅ |
Early adopter pricing — $4.99/mo PRO and $9.99/mo Elite rates are locked in for the first 1,000 users (regular: $10/mo and $29/mo). Upgrade anytime.
7 tools designed for maximum token efficiency. Each answers complete questions with rich, contextual responses:
| Tool | Purpose | Example Query |
|---|---|---|
pulse() | Market snapshot | "What's happening in the market right now?" |
investigate(subject) | Deep research | "Tell me about NVDA's insider activity" |
screen(focus) | Opportunity scanning | "Find tech stocks with insider buying" |
assess(symbol) | Position health check | "How is my AAPL position doing?" |
institutional(query_type) | 13F intelligence | "What is Berkshire buying?" |
search(q) | Semantic search | "Find CEO resignation filings" |
service_info() | Account & service info | "What's my subscription tier?" |
User prompt: "What's happening in the market right now?"
What happens:
pulse() toolUser prompt: "Tell me about NVIDIA's insider activity and recent filings"
What happens:
investigate("NVDA") toolUser prompt: "Find tech stocks where insiders are buying"
What happens:
screen(focus="insider", sector="Technology") toolUser prompt: "What is Berkshire Hathaway buying?"
What happens:
institutional("manager", identifier="Berkshire") toolUnderstanding when to use each tool is key to getting the best results. Here's the mental model:
pulse() — What's happening right now?Use when: User wants a market overview without a specific company in mind.
Returns: Market movers, recent high-impact 8-K filings, notable insider trades, key economic indicators.
No parameters. Just call it.
pulse()Best for: Starting a session, getting oriented, "what should I look at today?"
investigate(subject) — Deep dive on a specific entityUse when: User names a specific company, insider, or sector they want to research.
Auto-detects entity type:
AAPL, NVDA) → Company research0001067983) → Insider researchTechnology) → Sector analysisReturns for companies:
investigate("AAPL") # Company
investigate("0001067983") # Warren Buffett by CIK
investigate("Technology", entity_type="sector") # SectorBest for: "Tell me about X", "What's going on with X?", research before a decision.
screen(focus) — Find opportunities across the marketUse when: User wants to discover stocks matching certain criteria, not research a specific one.
Parameters:
focus: What signal to screen for"all" — Everything (default)"multi_signal" — Stocks with multiple confirming signals"insider" — Insider buying clusters"events" — High-impact 8-K filingssector: Filter to a sector (e.g., "Technology")min_score: Minimum opportunity score (0-100)days: Lookback period (default 7)limit: Max results (default 25)screen() # Everything
screen(focus="insider", sector="Technology") # Tech insider buying
screen(focus="events", days=14) # Recent material eventsBest for: "What opportunities are out there?", "Find me stocks where insiders are buying."
assess(symbol) — Health check for a position you ownUse when: User owns a stock and wants to evaluate whether to hold, add, or sell.
Returns:
assess("NVDA")
assess("AAPL", days=90) # Longer lookbackBest for: Portfolio review, "How's my position in X?", "Should I be worried about X?"
institutional(query_type) — 13F institutional investor intelligenceUse when: User wants to know what big money is doing.
Query types:
"manager" — Profile a specific fund (by name or CIK)"security" — Who owns a specific stock?"signal" — Find stocks with institutional flow patternsSignal types (for query_type="signal"):
"accumulation" — Stocks institutions are buying"distribution" — Stocks institutions are selling"conviction" — High conviction positions (5%+ of portfolio)"new" — Fresh institutional positionsinstitutional("manager", identifier="Citadel") # What does Citadel own?
institutional("security", identifier="NVDA") # Who owns NVIDIA?
institutional("signal", signal_type="accumulation") # Smart money buyingBest for: "What is Berkshire buying?", "Who owns NVDA?", "Follow the smart money."
search(q) — Find anything across the platformUse when: User is looking for something specific but doesn't know where it is.
Searches across:
Parameters:
q: Search query (min 2 chars)entity_type: Filter results — "filing", "company", "insider", "manager"sector: Filter by sectorimpact: Filter filings by impact level — "HIGH", "MEDIUM", "LOW"limit: Max results (default 20, max 100)search("CEO resignation") # Find CEO departure filings
search("NVIDIA", entity_type="company") # Find NVIDIA
search("Buffett", entity_type="insider") # Find Warren Buffett
search("activist", entity_type="manager") # Find activist funds
search("acquisition", sector="Technology", impact="HIGH") # High-impact tech M&ABest for: "Find filings about X", "Search for Y", discovery when you're not sure where to look.
service_info(info_type) — Account and service informationUse when: User asks about their subscription, features, or the service itself.
Info types:
"overview" — Service description and capabilities (default)"profile" — User's subscription tier, features, account status"pricing" — Subscription tiers and pricing"capabilities" — Available tools and data sources"status" — Server health and configurationservice_info() # Overview
service_info("profile") # Your account
service_info("pricing") # Pricing infoBest for: "What can you do?", "What's my tier?", "How much does PRO cost?"
| User Intent | Tool |
|---|---|
| "What's happening?" / "Market overview" | pulse() |
| "Tell me about [company/insider/sector]" | investigate() |
| "Find stocks where..." / "What opportunities..." | screen() |
| "How's my [position]?" / "Should I worry about..." | assess() |
| "What is [fund] buying?" / "Who owns [stock]?" | institutional() |
| "Search for..." / "Find filings about..." | search() |
| "What's my tier?" / "What can you do?" | service_info() |
Pre-built research workflows that produce complete reports:
insider_activity_report — Insider trading analysis for a symbolsec_filing_intelligence_report — 8-K filing analysismacro_market_conditions_report — Economic backdropinfluential_investor_research — Smart money deep divesector_opportunity_scan — Multi-signal sector analysisquarterly_stock_checkup — Portfolio position reviewMost users don't need this. The hosted version at mcp.profitelligence.com is free, fast, and requires zero setup. Just add your API key and go (see Quick Start above).This repo exists so you can:
| Use Case | Recommendation |
|---|---|
| Just want financial intelligence in Claude | Use hosted — it's free |
| Want to audit what code is running | Read this repo, use hosted |
| Need custom web search privacy | Self-host with your own Brave API key |
| Building on top of our tools | Fork and extend |
We publish multi-arch images (amd64 + arm64) to Docker Hub:
docker pull profitelligence/mcp-server:latestRun in stdio mode (for Claude Desktop):
docker run -i --rm \
-e PROF_API_KEY=pk_live_xxx \
profitelligence/mcp-server:latestRun in HTTP mode (for development/testing):
docker run -d -p 3000:3000 \
-e PROF_API_KEY=pk_live_xxx \
-e PROF_MCP_MODE=http \
profitelligence/mcp-server:latestgit clone https://github.com/profitelligence/profitelligence-mcp-server.git
cd profitelligence-mcp-server
pip install -e .
PROF_API_KEY=pk_live_xxx python -m src.server| Variable | Required | Description |
|---|---|---|
PROF_API_KEY | Yes | Your API key from profitelligence.com |
PROF_MCP_MODE | No | stdio (default) or http |
PROF_MCP_PORT | No | HTTP port (default: 3000) |
BRAVE_API_KEY | No | Your Brave Search key for web search privacy |
The hosted version uses our shared infrastructure. When self-hosting, you can provide your own Brave Search API key (2,000 free queries/month):
See CONTRIBUTING.md for development setup.
See our privacy policy: profitelligence.com/privacy
MIT License - See LICENSE for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.