- Home
- MCP servers
- Asset Price
Asset Price
- typescript
2
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mk965-asset-price-mcp": {
"command": "npx",
"args": [
"-y",
"asset-price-mcp"
]
}
}
}You can access up-to-date asset prices for precious metals and cryptocurrencies via a purpose-built MCP server. It fetches data from Gold API and CoinGecko, routes requests to available sources, and caches results for fast responses and to respect rate limits, making it easy to display current prices in your applications or language models.
How to use
You interact with the Asset Price MCP Server from your MCP client by calling its tools to retrieve current pricing data. Use the available endpoints to get real-time prices for specific assets or to fetch a list of all supported assets. Results are returned in the currency you choose, with USD as the default.
How to install
Prerequisites: you need Node.js and npm installed on your system to run MCP servers and build the project.
Install via Smithery (recommended for Claude Desktop users) by running the following command in your terminal.
npx -y @smithery/cli install @mk965/asset-price-mcp --client claude
MacOS/Linux step to run the MCP server locally using npx.
{
"mcpServers": {
"Asset Price MCP": {
"command": "npx",
"args": ["-y", "asset-price-mcp"]
}
}
}
Windows step to run the MCP server locally using cmd.
{
"mcpServers": {
"Asset Price MCP": {
"command": "cmd",
"args": ["/c", "npx", "-y", "asset-price-mcp"]
}
}
}
Build the project after installing dependencies.
npm run build
Additional notes
If you plan to use a different client or environment, ensure your MCP client is configured to point to the running Asset Price MCP Server and that you select the appropriate tool (get_asset_price or list_assets) for your use case.
Available tools
get_asset_price
Retrieves current pricing information for a specific asset. Optional arguments include symbol (e.g., XAU, BTC) and currency (default USD).
list_assets
Lists all assets supported for price queries.