Overview
PlusE provides structured financial data via MCP for AI agents and REST API for direct HTTP access.
PlusE Documentation
PlusE delivers structured financial data through two access methods:
| Method | Best For | Documentation |
|---|---|---|
| MCP | AI agents (Claude, Cursor, etc.) | MCP Setup Guide |
| REST API | Direct HTTP requests from any app | REST API Reference |
What is MCP?
Model Context Protocol (MCP) is an open standard for connecting AI models to external tools and data sources. PlusE implements MCP to provide financial data tools that your AI can call during conversations.
Instead of fetching and parsing raw market data, your AI agent can call PlusE's pre-built tools to get structured financial insights.
Quick Start (MCP)
-
Get an API key - Sign up at console.plusefin.com
-
Configure your MCP client - Add PlusE server to your client:
{ "mcpServers": { "plusefin": { "httpUrl": "https://mcp.plusefin.com/mcp/?apikey=YOUR_API_KEY" } } } -
Start using tools - Your AI can now call financial data tools:
get_ticker_data("AAPL")- Company overview and metricsget_holdings("SPY")- ETF holdings and sector allocationget_news_sentiment("TSLA")- News sentiment analysis
See MCP Client Setup for detailed configuration.
Quick Start (REST API)
If you prefer direct HTTP requests:
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://mcp.plusefin.com/api/tools/ticker/AAPL"
See REST API Reference for all endpoints.
Available Data
Both MCP and REST API provide access to the same financial data:
| Category | Description |
|---|---|
| Basic Finance | Company profiles, market data, analyst ratings |
| Holdings & ETFs | ETF composition, sector allocation, risk metrics |
| Options | Options chains, Greeks, volatility analysis |
| Macro | Economic indicators, sector performance |
| Predictions | Trend analysis and anomaly detection |
| Calculations | Position sizing and risk calculations |
Browse all tools in the Tools Reference.
Response Format
All endpoints return structured text optimized for LLM consumption:
COMPANY OVERVIEW
Company Name NVIDIA Corporation
Sector Technology
Industry Semiconductors
Market Cap $4,552,889,204,736.00
KEY METRICS
Current Price $187.00
52-Week Range $86.62 - $187.35
P/E Ratio 52.23
Forward P/E 45.39
Use Cases
- Research reports - Generate comprehensive stock analysis
- Portfolio analysis - Analyze ETF holdings and sector allocation
- Risk assessment - Calculate position sizes and volatility metrics
- Options trading - Access Greeks and implied volatility data
Support
- Telegram: https://t.me/plusefin
- Reddit: https://www.reddit.com/r/plusefin/
- Playground: https://chat.findata-be.uk
Ready to get started? Continue to MCP Client Setup or REST API Reference.