CONNECT APP
Build with Mboum
Stock Scanner and APIs for intraday and end of day stock data, options and news.
Data Analytics
- API key
MCP
Give your agent Mboum tools
Every Mboum action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Mboum account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "mboum",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Get Accumulation/Distribution Line (AD):
const result = await mcp.callTool({
name: "mboum-get-ad",
arguments: {
ticker: "Ticker",
interval: "Interval",
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", # any stable ID for this user in your system
"x-pd-app-slug": "mboum",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Get Accumulation/Distribution Line (AD):
result = await session.call_tool("mboum-get-ad", {
"ticker": "Ticker",
"interval": "Interval",
})API PROXY
Call the Mboum API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Mboum API with the connected user's credentials attached. You store no tokens and write no refresh logic.
const resp = await pd.proxy.get({
externalUserId: "{external_user_id}", // any stable ID for this user in your system
accountId: "apn_xxxxxxx",
url: "https://api.mboum.com/v2/markets/market-info",
})
// Any allowed Mboum endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.# The path segment is the target URL, URL-safe base64 encoded:
# https://api.mboum.com/v2/markets/market-info
curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkubWJvdW0uY29tL3YyL21hcmtldHMvbWFya2V0LWluZm8?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: production"SDK
Run Mboum actions from your backend
Connect a user's Mboum account once, then run Get Accumulation/Distribution Line (AD) on their behalf from your own code — TypeScript, Python, or plain HTTP.
import { PipedreamClient } from "@pipedream/sdk"
const pd = new PipedreamClient({
projectId: process.env.PIPEDREAM_PROJECT_ID!,
clientId: process.env.PIPEDREAM_CLIENT_ID!,
clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
projectEnvironment: "production",
})
const result = await pd.actions.run({
id: "mboum-get-ad",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
mboum: { authProvisionId: "apn_xxxxxxx" },
ticker: "Ticker",
interval: "Interval",
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="mboum-get-ad",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"mboum": {"authProvisionId": "apn_xxxxxxx"},
"ticker": "Ticker",
"interval": "Interval",
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "mboum-get-ad",
"configured_props": {
"mboum": { "authProvisionId": "apn_xxxxxxx" },
"ticker": "Ticker",
"interval": "Interval"
}
}'TOOLS
Mboum actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Get Accumulation/Distribution Line (AD)
actionCalculate Accumulation/Distribution Line technical indicator to measure volume flow and confirm price trends. See the documentationRead-onlyv0.0.2 -
Get Accumulation/Distribution Oscillator (ADOSC)
actionCalculate Accumulation/Distribution Oscillator technical indicator to measure the momentum of volume flow. See the documentationRead-onlyv0.0.2 -
Get Analyst Ratings
actionGet analyst ratings and recommendations for a stock including buy/sell/hold ratings. See the documentationRead-onlyv0.0.2 -
Get Average Directional Index (ADX)
actionCalculate Average Directional Index technical indicator to measure trend strength and direction. See the documentationWritev0.0.2 -
Get Commodity Channel Index (CCI)
actionCalculate Commodity Channel Index technical indicator to identify cyclical trends and overbought/oversold conditions. See the documentationWritev0.0.2 -
Get Crypto Currencies
actionGet crypto currencies. See the documentationRead-onlyv0.0.2 -
Get Crypto Holders
actionGet crypto holders. See the documentationRead-onlyv0.0.2 -
Get Crypto Modules
actionGet crypto modules. See the documentationRead-onlyv0.0.2 -
Get Crypto Profile
actionGet crypto profile. See the documentationRead-onlyv0.0.2 -
Get Crypto Quotes
actionGet crypto quotes. See the documentationRead-onlyv0.0.2 -
Get Dividends Calendar
actionGet upcoming and historical dividend payments and ex-dividend dates. See the documentationRead-onlyv0.0.2 -
Get Earnings Calendar
actionGet upcoming and historical earnings announcements and reports. See the documentationRead-onlyv0.0.3 -
Get Economic Events
actionGet upcoming and historical economic events and indicators that can impact market movements. See the documentationRead-onlyv0.0.2 -
Get Financial News
actionGet latest financial news and market updates, with optional filtering by ticker or category. See the documentationRead-onlyv0.0.2 -
Get Financial Statements
actionGet comprehensive financial statements including income statement, balance sheet, and cash flow data. See the documentationRead-onlyv0.0.2 -
Get Highest IV Options
actionGet options contracts with the highest Implied Volatility (IV) levels for volatility trading strategies. See the documentationRead-onlyv0.0.2 -
Get Historical Data
actionGet comprehensive historical stock data with advanced filtering and date range options. See the documentationRead-onlyv0.0.2 -
Get Insider Trading Data
actionGet insider trading activities including buys, sells, and other transactions by company insiders. See the documentationRead-onlyv0.0.2 -
Get Institutional Holdings
actionGet institutional ownership data including top institutional holders and their position changes. See the documentationRead-onlyv0.0.2 -
Get IPO Data
actionGet upcoming and recent Initial Public Offering (IPO) data including dates, prices, and company information. See the documentationRead-onlyv0.0.2 -
Get IV Change
actionGet Implied Volatility (IV) change data showing volatility movements and trends over time. See the documentationRead-onlyv0.0.3 -
Get IV Rank Percentile
actionGet Implied Volatility (IV) rank and percentile data for options to assess volatility levels. See the documentationRead-onlyv0.0.3 -
Get MACD
actionCalculate Moving Average Convergence Divergence (MACD) technical indicator to identify trend changes and momentum. See the documentationRead-onlyv0.0.2 -
Get Market Information
actionGet comprehensive market information including indices, market status, and general market data. See the documentationRead-onlyv0.0.2 -
Get Market Movers
actionGet top market movers including gainers, losers, and most active stocks. See the documentationRead-onlyv0.0.2 -
Get Market Tickers
actionGet a comprehensive list of stock tickers and symbols with detailed information. See the documentationRead-onlyv0.0.2 -
Get Most Active Options
actionGet the most actively traded options contracts based on volume and trading activity. See the documentationRead-onlyv0.0.2 -
Get Options Data
actionGet comprehensive options data including prices, Greeks, and market metrics. See the documentationRead-onlyv0.0.2 -
Get Options Flow
actionGet real-time options flow data showing large block trades and institutional activity. See the documentationRead-onlyv0.0.2 -
Get Price Targets
actionGet analyst price targets and recommendations for a stock including target highs, lows, and consensus. See the documentationRead-onlyv0.0.2 -
Get Public Offerings
actionGet data on public offerings including secondary offerings, SPAC mergers, and other capital market events. See the documentationRead-onlyv0.0.2 -
Get Realtime Quote
actionGet real-time stock quote data including current price, volume, and market data. See the documentationRead-onlyv0.0.2 -
Get Relative Strength Index (RSI)
actionCalculate Relative Strength Index technical indicator to measure momentum and identify overbought/oversold conditions. See the documentationWritev0.0.2 -
Get Revenue Data
actionGet detailed revenue breakdown and analysis for a company including revenue trends and segments. See the documentationRead-onlyv0.0.2 -
Get SEC Filings
actionGet SEC filings data including 10-K, 10-Q, 8-K, and other regulatory filings. See the documentationRead-onlyv0.0.2 -
Get Short Interest
actionGet short interest data including short ratio, short percentage of float, and short interest trends. See the documentationRead-onlyv0.0.2 -
Get Simple Moving Average (SMA)
actionCalculate Simple Moving Average technical indicator for stocks and crypto. See the documentationRead-onlyv0.0.2 -
Get Stochastic Oscillator (STOCH)
actionCalculate Stochastic Oscillator technical indicator to identify momentum and potential reversal points. See the documentationRead-onlyv0.0.2 -
Get Stock History
actionGet historical stock data including OHLCV (Open, High, Low, Close, Volume) data. See the documentationRead-onlyv0.0.2 -
Get Stock Modules
actionGet comprehensive stock data modules including financial metrics, statistics, and company information. See the documentationRead-onlyv0.0.2 -
Get Stock Screener Results
actionScreen stocks based on various financial criteria and filters. See the documentationRead-onlyv0.0.2 -
Get Stock Splits
actionGet upcoming and historical stock split data including split ratios, dates, and company information. See the documentationRead-onlyv0.0.2 -
Get Ticker Summary
actionGet comprehensive ticker summary including key statistics, financial metrics, and company overview. See the documentationRead-onlyv0.0.2 -
Get Unusual Options Activity
actionGet unusual options activity including high volume and large trades that deviate from normal patterns. See the documentationRead-onlyv0.0.2 -
Search Markets
actionSearch for stocks, ETFs, and other financial instruments. See the documentationRead-onlyv0.0.2
No Mboum triggers are available yet.
- App slug
- mboum
- Authentication
- API key
- Categories
- Data Analytics
- Actions
- 45
- Triggers
- 0
- API proxy
- Available