Skip to main content
Glama
BitwaveCorp

Price Service MCP

by BitwaveCorp

Price Service MCP

A Model Context Protocol (MCP) server that provides cryptocurrency price data retrieval capabilities. This server connects to BitwaveCorp's price service API to fetch real-time and historical cryptocurrency prices.

Features

  • get_price: Fetch cryptocurrency price data with customizable parameters

  • health_check: Check the health status of the price service

  • Support for multiple exchanges (Coinbase, Binance, Kraken)

  • Historical price data with timestamp support

  • Multiple time resolutions (1m, 5m, 15m, 1h, 4h, 1d)

  • Configurable fiat currency conversion

Related MCP server: Crypto MCP Server

Installation

npm install
npm run build

Usage

Development

npm run dev

Production

npm run build
npm start

Tools

get_price

Retrieve cryptocurrency price data from the price service.

Parameters:

  • fromSym (required): Cryptocurrency symbol (e.g., "BTC", "ETH")

  • timestampSEC (optional): Unix timestamp in seconds for historical price

  • service (optional): Price service to use ("coinbase", "binance", "kraken") - default: "coinbase"

  • resolution (optional): Time resolution ("1m", "5m", "15m", "1h", "4h", "1d") - default: "1d"

  • toFiat (optional): Target fiat currency - default: "USD"

  • timezone (optional): Timezone for timestamp - default: "UTC"

Example:

{
  "fromSym": "BTC",
  "service": "coinbase",
  "toFiat": "USD"
}

health_check

Check the health status of both the MCP server and the underlying price service.

Parameters: None

Configuration for Claude Desktop

Add this to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "price-service": {
      "command": "node",
      "args": ["/path/to/price-service-mcp/build/index.js"]
    }
  }
}

API Endpoint

The MCP server connects to: https://price-svc-utyjy373hq-uc.a.run.app

Development

  1. Clone the repository

  2. Install dependencies: npm install

  3. Build the project: npm run build

  4. Run in development mode: npm run dev

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Available Tools

2 tools
get_priceC

Get cryptocurrency price data from the price service

ParametersJSON Schema
NameRequiredDescriptionDefault
fromSymYesThe cryptocurrency symbol to get price for (e.g., BTC, ETH)
timestampSECNoUnix timestamp in seconds for historical price (optional)
serviceNoPrice service to use (default: coinbase)coinbase
resolutionNoTime resolution for price data (default: 1d)1d
toFiatNoTarget fiat currency (default: USD)USD
timezoneNoTimezone for timestamp (default: UTC)UTC

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It only states what the tool does at a high level ('Get cryptocurrency price data') without describing response format, error conditions, rate limits, authentication requirements, or whether this is a real-time or cached service. For a data retrieval tool with zero annotation coverage, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose with zero wasted words. It's appropriately sized for a straightforward data retrieval tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters including historical data options) and lack of both annotations and output schema, the description is inadequate. It doesn't explain what price data is returned (single price? OHLC? volume?), how historical timestamps work with different resolutions, or what the response structure looks like. For a price data tool with multiple configuration options, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly with descriptions, enums, defaults, and required status. The description adds no parameter-specific information beyond what's in the schema, meeting the baseline expectation when schema coverage is complete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as 'Get cryptocurrency price data from the price service' - a specific verb ('Get') with resource ('cryptocurrency price data') and source ('price service'). It doesn't distinguish from sibling tools, but the only sibling is 'health_check' which serves a completely different purpose, so differentiation isn't needed here.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. While there's only one sibling tool ('health_check') with an unrelated purpose, the description doesn't mention any prerequisites, constraints, or typical use cases for price data retrieval.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

health_checkB

Check the health status of the price service

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but provides no information about what 'health status' means, what the response format might be, whether this is a read-only operation, or any performance characteristics. The description is minimal and doesn't compensate for the lack of annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core purpose without any unnecessary words. It's appropriately sized for a simple health check tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a health check tool with no annotations and no output schema, the description is insufficient. It doesn't explain what constitutes 'health status', what format the response takes, what values might indicate problems, or how this differs from other service monitoring approaches. The context signals show this is a simple tool, but the description doesn't provide enough operational guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and the schema already fully documents this absence.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Check') and target ('health status of the price service'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from its sibling 'get_price', which appears to be a different operation (fetching price data vs. checking service health).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. While the purpose suggests it's for monitoring service health, there's no mention of when this check should be performed, what triggers its use, or how it differs from simply calling 'get_price' to test service availability.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedget_price
    • First observedhealth_check

TDQS

B3.1/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have completely distinct purposes: get_price retrieves cryptocurrency price data, while health_check monitors the service's operational status. There is no overlap or ambiguity in their functions, making it easy for an agent to select the correct tool for each task.

Naming Consistency5/5

Both tools follow a consistent verb_noun naming pattern (get_price, health_check), using clear and descriptive verbs that align with their actions. The naming is uniform and predictable across the tool set.

Tool Count2/5

With only two tools, the server feels under-scoped for a price service domain. While get_price is essential, the tool set lacks operations like historical price retrieval, multi-asset queries, or market data analysis, making it too limited for typical cryptocurrency price service workflows.

Completeness2/5

The tool set is severely incomplete for a cryptocurrency price service. It includes basic price fetching and health monitoring but misses critical operations such as historical price data, price comparisons, or support for multiple cryptocurrencies, which are standard expectations in this domain.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides real-time and historical cryptocurrency market data using ccxt, enabling users to fetch live prices, historical candlestick data, and stream real-time ticker updates across multiple exchanges.
    14
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides real-time cryptocurrency pricing data and market information from major exchanges like Binance, Coinbase, and Kraken via the Luzia API. It enables AI assistants to fetch ticker prices, compare exchange rates, and analyze market trends through specialized tools and prompts.
    39
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Provides live cryptocurrency market data from over 100 exchanges, enabling AI agents to fetch prices, order books, funding rates, and more for trading analysis and arbitrage opportunities.
    13
    2
    MIT