# Mboum — Pipedream Connect

> Stock Scanner and APIs for intraday and end of day stock data, options and news.

- API slug: `mboum` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://mboum.com/
- This page (HTML): https://pipedream.com/apps/mboum
- Tools: 45 actions · 0 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: mboum`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
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 accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_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",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Mboum endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# 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"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
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",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (45)

### `mboum-get-ad` — Get Accumulation/Distribution Line (AD) (Read-only)

Calculate Accumulation/Distribution Line technical indicator to measure volume flow and confirm price trends. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-ad.md

### `mboum-get-adosc` — Get Accumulation/Distribution Oscillator (ADOSC) (Read-only)

Calculate Accumulation/Distribution Oscillator technical indicator to measure the momentum of volume flow. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-adosc.md

### `mboum-get-analyst-ratings` — Get Analyst Ratings (Read-only)

Get analyst ratings and recommendations for a stock including buy/sell/hold ratings. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-analyst-ratings.md

### `mboum-get-adx` — Get Average Directional Index (ADX) (Write)

Calculate Average Directional Index technical indicator to measure trend strength and direction. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-adx.md

### `mboum-get-cci` — Get Commodity Channel Index (CCI) (Write)

Calculate Commodity Channel Index technical indicator to identify cyclical trends and overbought/oversold conditions. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-cci.md

### `mboum-get-crypto-currencies` — Get Crypto Currencies (Read-only)

Get crypto currencies. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-crypto-currencies.md

### `mboum-get-crypto-holders` — Get Crypto Holders (Read-only)

Get crypto holders. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-crypto-holders.md

### `mboum-get-crypto-modules` — Get Crypto Modules (Read-only)

Get crypto modules. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-crypto-modules.md

### `mboum-get-crypto-profile` — Get Crypto Profile (Read-only)

Get crypto profile. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-crypto-profile.md

### `mboum-get-crypto-quotes` — Get Crypto Quotes (Read-only)

Get crypto quotes. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-crypto-quotes.md

### `mboum-get-dividends` — Get Dividends Calendar (Read-only)

Get upcoming and historical dividend payments and ex-dividend dates. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-dividends.md

### `mboum-get-earnings` — Get Earnings Calendar (Read-only)

Get upcoming and historical earnings announcements and reports. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-earnings.md

### `mboum-get-economic-events` — Get Economic Events (Read-only)

Get upcoming and historical economic events and indicators that can impact market movements. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-economic-events.md

### `mboum-get-news` — Get Financial News (Read-only)

Get latest financial news and market updates, with optional filtering by ticker or category. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-news.md

### `mboum-get-financials` — Get Financial Statements (Read-only)

Get comprehensive financial statements including income statement, balance sheet, and cash flow data. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-financials.md

### `mboum-get-highest-iv-options` — Get Highest IV Options (Read-only)

Get options contracts with the highest Implied Volatility (IV) levels for volatility trading strategies. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-highest-iv-options.md

### `mboum-get-historical-data` — Get Historical Data (Read-only)

Get comprehensive historical stock data with advanced filtering and date range options. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-historical-data.md

### `mboum-get-insider-trading` — Get Insider Trading Data (Read-only)

Get insider trading activities including buys, sells, and other transactions by company insiders. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-insider-trading.md

### `mboum-get-institutional-holdings` — Get Institutional Holdings (Read-only)

Get institutional ownership data including top institutional holders and their position changes. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-institutional-holdings.md

### `mboum-get-ipo-data` — Get IPO Data (Read-only)

Get upcoming and recent Initial Public Offering (IPO) data including dates, prices, and company information. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-ipo-data.md

### `mboum-get-iv-change` — Get IV Change (Read-only)

Get Implied Volatility (IV) change data showing volatility movements and trends over time. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-iv-change.md

### `mboum-get-iv-rank-percentile` — Get IV Rank Percentile (Read-only)

Get Implied Volatility (IV) rank and percentile data for options to assess volatility levels. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-iv-rank-percentile.md

### `mboum-get-macd` — Get MACD (Read-only)

Calculate Moving Average Convergence Divergence (MACD) technical indicator to identify trend changes and momentum. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-macd.md

### `mboum-get-market-info` — Get Market Information (Read-only)

Get comprehensive market information including indices, market status, and general market data. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-market-info.md

### `mboum-get-movers` — Get Market Movers (Read-only)

Get top market movers including gainers, losers, and most active stocks. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-movers.md

### `mboum-get-tickers` — Get Market Tickers (Read-only)

Get a comprehensive list of stock tickers and symbols with detailed information. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-tickers.md

### `mboum-get-most-active-options` — Get Most Active Options (Read-only)

Get the most actively traded options contracts based on volume and trading activity. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-most-active-options.md

### `mboum-get-options` — Get Options Data (Read-only)

Get comprehensive options data including prices, Greeks, and market metrics. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-options.md

### `mboum-get-options-flow` — Get Options Flow (Read-only)

Get real-time options flow data showing large block trades and institutional activity. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-options-flow.md

### `mboum-get-price-targets` — Get Price Targets (Read-only)

Get analyst price targets and recommendations for a stock including target highs, lows, and consensus. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-price-targets.md

### `mboum-get-public-offerings` — Get Public Offerings (Read-only)

Get data on public offerings including secondary offerings, SPAC mergers, and other capital market events. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-public-offerings.md

### `mboum-get-realtime-quote` — Get Realtime Quote (Read-only)

Get real-time stock quote data including current price, volume, and market data. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-realtime-quote.md

### `mboum-get-rsi` — Get Relative Strength Index (RSI) (Write)

Calculate Relative Strength Index technical indicator to measure momentum and identify overbought/oversold conditions. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-rsi.md

### `mboum-get-revenue` — Get Revenue Data (Read-only)

Get detailed revenue breakdown and analysis for a company including revenue trends and segments. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-revenue.md

### `mboum-get-sec-filings` — Get SEC Filings (Read-only)

Get SEC filings data including 10-K, 10-Q, 8-K, and other regulatory filings. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-sec-filings.md

### `mboum-get-short-interest` — Get Short Interest (Read-only)

Get short interest data including short ratio, short percentage of float, and short interest trends. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-short-interest.md

### `mboum-get-sma` — Get Simple Moving Average (SMA) (Read-only)

Calculate Simple Moving Average technical indicator for stocks and crypto. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-sma.md

### `mboum-get-stoch` — Get Stochastic Oscillator (STOCH) (Read-only)

Calculate Stochastic Oscillator technical indicator to identify momentum and potential reversal points. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-stoch.md

### `mboum-get-history` — Get Stock History (Read-only)

Get historical stock data including OHLCV (Open, High, Low, Close, Volume) data. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-history.md

### `mboum-get-modules` — Get Stock Modules (Read-only)

Get comprehensive stock data modules including financial metrics, statistics, and company information. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-modules.md

### `mboum-get-screener` — Get Stock Screener Results (Read-only)

Screen stocks based on various financial criteria and filters. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-screener.md

### `mboum-get-stock-splits` — Get Stock Splits (Read-only)

Get upcoming and historical stock split data including split ratios, dates, and company information. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-stock-splits.md

### `mboum-get-ticker-summary` — Get Ticker Summary (Read-only)

Get comprehensive ticker summary including key statistics, financial metrics, and company overview. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-ticker-summary.md

### `mboum-get-unusual-options-activity` — Get Unusual Options Activity (Read-only)

Get unusual options activity including high volume and large trades that deviate from normal patterns. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/get-unusual-options-activity.md

### `mboum-search` — Search Markets (Read-only)

Search for stocks, ETFs, and other financial instruments. See the documentation

Full schema: https://pipedream.com/apps/mboum/actions/search.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
