xpay tools logo
  • Tools
  • Collections
  • Skills
  • Docs
  • xpay.sh
  1. Home
  2. ›
  3. Providers
  4. ›
  5. Alpha Vantage

Alpha Vantage logo

Alpha Vantage

3 tools

$0.02/call

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

​
​
How it works ↓
TOOL LIST
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)


flat

$0.02/call

TOOL GET
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.


flat

$0.02/call

TOOL 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)


flat

$0.02/call

Connect Alpha Vantage tools
​
​

Cursor

Claude Code

Claude Desktop

Windsurf

VS Code

Cline

Roo Code

ChatGPT

Gemini CLI

Amazon Q

Goose

Augment

n8n

API / cURL

AI SDK

TypeScript SDK

Add to ~/.cursor/mcp.json
{
  "mcpServers": {
    "alpha-vantage": {
      "url": "https://alpha-vantage.mcp.xpay.sh/mcp?key=YOUR_API_KEY"
    }
  }
}
Or connect all tools

Access all tools (including Alpha Vantage) through a single MCP connection.

https://mcp.xpay.sh/mcp?key=***
{
  "mcpServers": {
    "xpay": {
      "url": "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
    }
  }
}
Agent Discovery

Machine-readable catalogs for LLM agents and automation.

llms.txt — Human-readable tool catalog
curl https://xpay.tools/llms.txt
agents.txt — Structured JSON for agents
curl https://xpay.tools/agents.txt
skill.md — Claude Code skill
curl https://xpay.tools/skill.md
Pricing

Pay per tool call. No subscriptions.

3 Alpha Vantage tools available
About Alpha Vantage

Alpha Vantage on xpay — Real-time financial data without the signup friction

Alpha Vantage is a widely-used provider of stock market data, forex rates, cryptocurrency prices, and company fundamentals. Developers reach for it when they need reliable, real-time financial quotes and historical data to power trading bots, portfolio dashboards, financial analysis agents, and market research tools. Traditionally, using Alpha Vantage meant signing up for an account, managing API keys, and paying subscription fees. On xpay, you call Alpha Vantage's tools directly through MCP without ever creating an Alpha Vantage account—just authenticate with your xpay key and pay per call.

What's available

  • TOOL_LIST — Discover all available Alpha Vantage API tools with their names and descriptions. Use this to explore what's callable before diving into parameter schemas.
  • TOOL_GET — Retrieve the complete parameter schema for one or more tools. Call this after TOOL_LIST to understand what arguments each tool accepts.
  • TOOL_CALL — Execute a tool by name with your arguments. Always call TOOL_GET first to validate the schema, then invoke the tool with matching parameters.

When Alpha Vantage is the right tool

  • Building a trading bot or portfolio tracker that needs real-time stock prices and historical OHLC data.
  • Enriching financial analysis agents with live forex rates or cryptocurrency prices.
  • Fetching company fundamentals (earnings, balance sheet, cash flow) for due diligence or research workflows.
  • Creating market dashboards that display intraday or daily time-series data.
  • Backtesting strategies with historical market data across multiple asset classes.

When to choose something else

  • If you need ultra-low-latency tick data or microsecond-level precision, consider specialized market data providers like Bloomberg or Reuters.
  • If your use case is purely educational or you're prototyping with mock data, free alternatives like Yahoo Finance or IEX Cloud may suffice.
  • If you need options chains, derivatives pricing, or complex financial instruments beyond equities and forex, you may need a more specialized provider.
  • If you're building a high-frequency trading system with millions of daily calls, direct Alpha Vantage subscription might offer volume discounts not available on xpay's per-call model.

Pricing snapshot

ToolPrice per Call
TOOL_LIST$0.02
TOOL_GET$0.02
TOOL_CALL$0.02

All Alpha Vantage tools on xpay are uniformly priced at $0.02 per call, with no subscription or minimum commitment. You pay only for what you use.

Quickstart

For Claude Code (recommended if you're using Alpha Vantage alone):

claude mcp add --transport http alpha-vantage "https://alpha-vantage.mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY"

Replace YOUR_XPAY_KEY with your xpay API key (get one free at https://xpay.tools after email or Google signup).

Once connected, your agent can call Alpha Vantage tools by their native names. For example, ask Claude to "use TOOL_LIST to see what tools are available, then call TOOL_GET to fetch the schema for the stock quote tool."

For Cursor, Windsurf, Cline, or VS Code (Copilot):

Add this entry to your mcp.json configuration file:

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

Your editor will then expose Alpha Vantage's tools to the AI assistant.

Unified endpoint (all xpay providers in one connection):

If you want to access multiple xpay providers (e.g., Alpha Vantage + Tavily + Apollo) from a single MCP connection, use:

claude mcp add --transport http xpay "https://mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY"

With the unified endpoint, you'll have meta-tools like xpay_discover() to search across all providers and xpay_run() to invoke tools by their full path (e.g., alpha-vantage/TOOL_CALL).

Why route Alpha Vantage through xpay?

  • No Alpha Vantage signup. xpay holds the upstream credentials. You authenticate once with your xpay key and gain instant access to Alpha Vantage's full API.
  • Pay per call, not per month. No subscription tiers or minimum commitments. A single stock quote lookup costs $0.02; use it sparingly or heavily—you only pay for what you call.
  • MCP-native integration. Alpha Vantage tools are exposed as standard MCP resources, so Claude, Cursor, and other MCP-compatible agents can discover and invoke them without custom wrappers or SDK imports.
  • Unified billing across providers. If you also use Tavily, Apollo, or other xpay-wrapped APIs, all calls bill to one xpay account with a single invoice.
  • Instant provisioning. Get started in seconds—no waiting for API key approvals or account verification from Alpha Vantage.
Frequently Asked Questions

Alpha Vantage is a financial data API that provides real-time and historical stock prices, forex rates, cryptocurrency data, and company fundamentals. It's commonly used by traders, portfolio managers, and financial analysis tools to fetch market data and build trading strategies.

Each Alpha Vantage tool call costs $0.02 on xpay. There are no subscriptions, monthly fees, or minimum commitments. You pay only for the calls you make. xpay provides $5 free credit on signup to get you started.

No. xpay manages the Alpha Vantage credentials on your behalf. You only need an xpay account (free signup at https://xpay.tools with email or Google). Once authenticated with your xpay API key, you have full access to Alpha Vantage's tools.

You can build stock price trackers, forex dashboards, cryptocurrency alerts, portfolio analysis agents, trading bots, market research tools, and financial due diligence workflows. Any application that needs real-time or historical market data can leverage Alpha Vantage through xpay's MCP interface.

Run: `claude mcp add --transport http alpha-vantage "https://alpha-vantage.mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY"` (replace YOUR_XPAY_KEY with your xpay API key). Once added, Claude will have access to Alpha Vantage tools like `TOOL_LIST`, `TOOL_GET`, and `TOOL_CALL`.

Yes. Add an entry to your `mcp.json` file with the Alpha Vantage endpoint URL and your xpay key. For example: `{ "mcpServers": { "alpha-vantage": { "url": "https://alpha-vantage.mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY" } } }`. Your AI assistant will then have access to Alpha Vantage tools.

Other financial data providers include IEX Cloud, Polygon.io, Finnhub, and Yahoo Finance. IEX Cloud and Polygon.io offer similar real-time stock and forex data; Finnhub specializes in news and sentiment. For ultra-low-latency or institutional-grade data, Bloomberg and Reuters are industry standards but require direct subscriptions.

Yes. Use the unified xpay endpoint: `https://mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY`. This exposes all xpay providers through a single MCP connection with meta-tools like `xpay_discover()` and `xpay_run()` for cross-provider queries and unified billing.

xpay tools logo

Marketplace for AI Capabilities. Run agents, tools & prompts with pay-per-use micropayments.

or ask your AI app
Popular Tools
FirecrawlTavilyExaHunterPerplexityRecraftIdeogramFlux
Collections
AI Image & MediaContent & ResearchDev ToolsFinanceLead GenWeb ScrapingCompetitive Intel
Developers
DocumentationAPI ReferenceQuickstartSDKsSkillsskill.mdllms.txt
Resources
The Agentic EconomyAgentic CommerceAgent Frameworksx402 ProtocolBlog
Company
About xpayxpay.shGitHubDiscordTwitter / X

© 2026 Agentically Inc. All rights reserved.
Privacy PolicyTerms of Service
✦
xpay Assistant
Alpha Vantage Tools

Ask me about tools, pricing, or how to connect

What tools does Alpha Vantage offer?
How do I connect via MCP?
Show me pricing
DocsCollectionsExplore