---
name: "xpay-alpha-vantage"
description: "Stock quotes, forex, crypto, fundamentals, and financial data"
version: "1.0.0"
provider: "Alpha Vantage"
tools: 3
---

# Alpha Vantage

Stock quotes, forex, crypto, fundamentals, and financial data

## Alpha Vantage

Stock quotes, forex, crypto, fundamentals, and financial data

### Available Tools

- **TOOL_LIST**: List all available Alpha Vantage API tools with their names and descriptions. IMPORTANT: This returns only tool names and descriptions, NOT parameter schemas. You MUST call TOOL_GET(tool_name) to retrieve the full inputSchema (required parameters, types, descriptions) before calling TOOL_CALL. Calling TOOL_CALL without first calling TOOL_GET will fail because you won't know the required parameters. Workflow: TOOL_LIST -> TOOL_GET(tool_name) -> TOOL_CALL(tool_name, arguments) — $0.02/call
- **TOOL_GET**: Get the full schema for one or more tools including all parameters. After discovering tools via TOOL_LIST, use this to get the complete parameter schema before calling the tool. You can provide either a single tool name or a list of tool names if you're unsure which one to use. — $0.02/call
- **TOOL_CALL**: Execute a tool by name with the provided arguments. IMPORTANT: You MUST call TOOL_GET(tool_name) first to retrieve the full parameter schema before calling this tool. The arguments must match the schema returned by TOOL_GET, including all required parameters. Calling without the correct arguments will result in errors. Workflow: TOOL_LIST -> TOOL_GET(tool_name) -> TOOL_CALL(tool_name, arguments) — $0.02/call

### Quick Start

```json
{
  "mcpServers": {
    "alpha-vantage": {
      "url": "https://alpha-vantage.mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY"
    }
  }
}
```

### Pricing

Pay per tool call from your XPay wallet. No subscriptions, no minimums.

Get an API key at [xpay.tools](https://xpay.tools).


**Tools:** 3
**Category:** Finance & Market Data

## When to Use

Use Alpha Vantage tools when you need to stock quotes, forex, crypto, fundamentals, and financial data. All tools are available through xpay✦'s single MCP connection.

## MCP Connection

```json
{
  "mcpServers": {
    "xpay": {
      "url": "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
    }
  }
}
```

For Claude Code:
```bash
claude mcp add --transport http xpay "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
```

## Available Tools

- **TOOL LIST** — List all available Alpha Vantage API tools with their names and descriptions. IMPORTANT: This returns only tool names and descriptions, NOT parameter schemas. You MUST call TOOL_GET(tool_name) to retrieve the full inputSchema (required parameters, types, descriptions) before calling TOOL_CALL. Calling TOOL_CALL without first calling TOOL_GET will fail because you won't know the required parameters. Workflow: TOOL_LIST -> TOOL_GET(tool_name) -> TOOL_CALL(tool_name, arguments) — $0.02/call — [SKILL.md](https://xpay.tools/skills/alpha-vantage/tool-list/SKILL.md)
- **TOOL GET** — Get the full schema for one or more tools including all parameters. After discovering tools via TOOL_LIST, use this to get the complete parameter schema before calling the tool. You can provide either a single tool name or a list of tool names if you're unsure which one to use. — $0.02/call — [SKILL.md](https://xpay.tools/skills/alpha-vantage/tool-get/SKILL.md)
- **TOOL CALL** — Execute a tool by name with the provided arguments. IMPORTANT: You MUST call TOOL_GET(tool_name) first to retrieve the full parameter schema before calling this tool. The arguments must match the schema returned by TOOL_GET, including all required parameters. Calling without the correct arguments will result in errors. Workflow: TOOL_LIST -> TOOL_GET(tool_name) -> TOOL_CALL(tool_name, arguments) — $0.02/call — [SKILL.md](https://xpay.tools/skills/alpha-vantage/tool-call/SKILL.md)

## How to Execute

1. **`xpay_discover`** — Search for tools: `xpay_discover("alpha-vantage")`
2. **`xpay_details`** — Get input schema: `xpay_details("alpha-vantage/TOOL_NAME")`
3. **`xpay_run`** — Execute: `xpay_run("alpha-vantage/TOOL_NAME", { ...inputs })`
4. **`xpay_balance`** — Check credits

## Links

- Provider page: https://xpay.tools/alpha-vantage/
- All providers: https://xpay.tools/explore
- Docs: https://docs.xpay.sh
