quote_short
Pack: fmp · Endpoint: https://gateway.pipeworx.io/fmp/mcp
Fetch a lightweight FMP quote for a ticker symbol returning only price, volume, and percent change; use when only the current price is needed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes |
Example call
Arguments
{
"symbol": "TSLA"
}
curl
curl -X POST https://gateway.pipeworx.io/fmp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quote_short","arguments":{"symbol":"TSLA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quote_short', {
"symbol": "TSLA"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fmp": {
"url": "https://gateway.pipeworx.io/fmp/mcp"
}
}
}
See Getting Started for client-specific install steps.