intrinio_target_price
Pack: intrinio · Endpoint: https://gateway.pipeworx.io/intrinio/mcp
Zacks target-price consensus for a company — mean/high/low/median analyst price targets and the number of estimates. Example: intrinio_target_price({ symbol: “AAPL”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Company identifier (ticker/CIK/LEI), e.g. “AAPL” |
_apiKey | string | yes | Intrinio API key (intrinio.com) |
Example call
Arguments
{
"symbol": "AAPL",
"_apiKey": "your-intrinio-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"intrinio_target_price","arguments":{"symbol":"AAPL","_apiKey":"your-intrinio-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('intrinio_target_price', {
"symbol": "AAPL",
"_apiKey": "your-intrinio-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"intrinio": {
"url": "https://gateway.pipeworx.io/intrinio/mcp"
}
}
}
See Getting Started for client-specific install steps.