artemis-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@artemis-mcpGet current price and 24h volume for Bitcoin"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
artemis-mcp
_ ____ _____ _____ __ __ ___ ____ __ __ ____ ____
/ \ | _ \_ _| ____| \/ |_ _/ ___| | \/ |/ ___| _ \
/ _ \ | |_) || | | _| | |\/| || |\___ \ | |\/| | | | |_) |
/ ___ \| _ < | | | |___| | | || | ___) | | | | | |___| __/
/_/ \_\_| \_\|_| |_____|_| |_|___|____/ |_| |_|\____|_|Related MCP server: Artemis MCP Server
Prerequisites
Python 3.11+
uv. On MacOS, you can install it using Homebrew:
brew install uv.Claude Desktop
Artemis API Key
Artemis Snowflake Login
Installation
Automated Using OpenTools (Easier)
Install OpenTools prerequisites.
Then run:
npx opentools@latest i artemisManual Setup (More Work)
Install uv
Copy sample_claude_desktop_config.json to your claude_desktop_config.json file:
On MacOS:
~/Library/Application\ Support/Claude/claude_desktop_config.jsonOn Windows:
%APPDATA%/Claude/claude_desktop_config.json
Fill out the relevant fields in claude_desktop_config.json:
<UV_PATH>- Path to uv executable (runwhere pythonon MacOS)<PATH_TO_ARTEMIS_MCP_REPO>- Path to local clone of the Artemis MCP repo<ARTEMIS_API_KEY>- Your Artemis API KeyRestart Claude Desktop
Artemis MCP Tools should now be available!
Available Tools
The Artemis MCP server provides the following tools:
API Tools
validate-artemis-api-key: Creates and validates connection to Artemis APIget-artemis-data: Retrieves data from Artemis API for given crypto token symbols and metricsget-artemis-supported-metrics-for-symbol: Retrieves supported metrics for a given crypto token symbol
Formula Generation Tools
generate-art-formula: Generates an ART formula for retrieving crypto prices, fees, revenue, and other time-series datagenerate-artinfo-formula: Generates an ARTINFO formula for asset classifications, available metrics, market cap rankings, and metadata
Available Tools
5 toolsgenerate_art_formulaB
Generate an ART formula for Artemis Sheets.
This tool creates properly formatted ART formulas for time-series data retrieval
such as prices, fees, revenue, and other historical data.
Important notes:
- Dates must be in YYYY-MM-DD format (e.g., "2025-02-28")
- For relative dates, calculate the actual date before passing it to this tool
- Order can be "ASC" (default) or "DESC"
- Common metrics include: PRICE, VOLUME, MC (market cap), SUPPLY, TVL, etc.
| Name | Required | Description | Default |
|---|---|---|---|
| order | No | ASC | |
| metrics | Yes | ||
| symbols | Yes | ||
| end_date | No | ||
| show_dates | No | ||
| start_date | No | ||
| hide_weekends | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does not disclose any behavioral aspects such as side effects, read-only nature, or permission requirements. The description focuses solely on output generation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief and well-organized, using a short introductory sentence and bullet-like notes. It avoids unnecessary verbosity while conveying the core purpose and important usage tips.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, no output schema), the description lacks essential context such as what the generated formula looks like, how parameters interact, or what the return value is. This leaves ambiguity for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains some parameters (date format, order, metric types) but leaves others like 'show_dates' and 'hide_weekends' unexplained. Coverage is partial; the description adds some value but does not fully clarify all seven parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Generate') and the resource ('ART formula for Artemis Sheets'), and provides examples of use cases (prices, fees, revenue). It does not explicitly contrast with sibling tools, but the purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives practical notes (date format, order, metrics) but does not explicitly state when to prefer this tool over alternatives like get_artemis_data. The context is implied but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_artinfo_formulaA
Generate an ARTINFO formula for Artemis Sheets.
This tool creates properly formatted ARTINFO formulas for retrieving asset information,
classifications, available metrics, market cap rankings, and other metadata.
For market rankings:
- To get top N assets by market cap, use top_n=N (e.g., top_n=25)
- This will generate =ARTINFO("ALL", "TOPn-SYMBOLS")
For asset information:
- Use parameter1="SYMBOL" (e.g., "BTC") and parameter2="INFO_TYPE"
(e.g., "ASSET-NAME", "MC-RANK", etc.)
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | ||
| parameter1 | No | ALL | |
| parameter2 | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description must carry transparency. It states it creates properly formatted formulas and shows example output strings (e.g., =ARTINFO(...)). It does not explicitly mention side effects, return type, or whether it is purely a string generator, but the examples imply the output format. This is adequate but not exhaustive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear opening statement followed by bulleted usage instructions. It is not overly verbose, but the multiple examples and conditional sections add length. It is effectively organized and front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple formula generator with no output schema, the description covers its purpose and parameter usage thoroughly. It does not mention error handling or alternative tool selection, but those are less critical for this tool's scope. Overall, it provides sufficient context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides no descriptions for top_n, parameter1, or parameter2 (0% coverage). The description fully explains each parameter with usage scenarios, examples, and default values, completely compensating for the schema gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates ARTINFO formulas for Artemis Sheets, with specific verb 'generate' and resource 'ARTINFO formula'. It distinguishes from sibling tools by explicitly naming ARTINFO (versus ART) and providing examples.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit conditional usage instructions for both market rankings (top_n) and asset information (parameter1/parameter2), with examples. However, it does not directly compare with sibling generate_art_formula or mention alternative tools, so it stops short of full alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_artemis_dataC
Get Crypto data from the Artemis API for the given symbols and metrics.
Args:
symbols: List of symbols to call the API for
metrics: List of metrics to call the API for
start_date: start date for the API make sure to use the format YYYY-MM-DD no other format will work
end_date: end date for the API make sure to use the format YYYY-MM-DD no other format will work
| Name | Required | Description | Default |
|---|---|---|---|
| metrics | Yes | ||
| symbols | Yes | ||
| end_date | Yes | ||
| start_date | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description says 'Get', implying a read-only operation, but does not disclose authentication requirements, rate limits, error behavior, or any side effects. With no annotations provided, the description carries the full burden and provides only minimal transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The purpose is front-loaded, but the description repeats the phrase 'for the given symbols and metrics' and includes the parameter list in the prose, making it somewhat redundant. It is not poorly structured, but it could be more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description omits crucial context such as the output format, error handling, authentication requirements, or any example calls. Since there is no output schema or annotations to fill these gaps, the tool definition feels incomplete for an agent to use reliably.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description repeats the parameter names without adding meaningful semantics: 'symbols' and 'metrics' are undefined, with no examples or allowed values. It does add important guidance that dates must use YYYY-MM-DD, but this only covers two of the four parameters and does not compensate for the otherwise tautological explanations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get Crypto data') and the resource ('from the Artemis API'), and names the key parameters (symbols, metrics, dates). It is distinguishable from siblings like 'get_artemis_supported_metrics_for_symbol' or 'validate_artemis_api_key', though it does not specify exactly what kind of data is returned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus the sibling tools. There is no mention of prerequisites such as validating the API key first or checking supported metrics, leaving the agent without direction on selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_artemis_supported_metrics_for_symbolA
Get Metrics that Artemis Supports for a given symbol and their descriptions + sources.
Args:
symbol: can only take one symbol at a time to get the list of supported metrics for that symbol
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The word 'Get' implies a read-only operation, but the description does not explicitly state side effects, authentication requirements, rate limits, or error behavior. Since no annotations are provided, the description carries the full burden, and it only partially addresses behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and directly to the point. It avoids unnecessary fluff and clearly communicates the core function and the key constraint on the symbol parameter in two short sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description mentions that the tool returns metrics with descriptions and sources, giving an agent a reasonable idea of the output. However, with no output schema, details about response structure, pagination, or possible empty results are not covered, though the tool's simplicity keeps this from being a major gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only defines 'symbol' as a required string with no description. The tool description adds that it accepts only one symbol at a time, which is useful, but it does not clarify the expected format (e.g., ticker symbol, name) or provide examples, leaving some ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to get the list of metrics supported by Artemis for a given symbol, including their descriptions and sources. It uses a specific verb ('get') and identifies the resource ('metrics'), making the intent unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some usage guidance by explicitly noting that the symbol parameter accepts only one symbol at a time. However, it does not mention when to prefer this tool over sibling tools like get_artemis_data or how it relates to them, so guidance is partial.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_artemis_api_keyC
Validate the Artemis API Key.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description is extremely minimal and does not disclose what validation entails, what the output looks like, whether it has side effects, or any permissions required. No annotations exist to supplement this gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence. It is well-structured for its brevity, though it could benefit from a bit more detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description does not mention how the API key is passed, what the success/failure output looks like, or any prerequisites. It is incomplete for an agent to use effectively without further information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema declares zero parameters, but the description implies an API key input without explaining how it is supplied (e.g., environment variable, hidden config). This ambiguity reduces clarity about the actual invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: to validate the Artemis API Key. It distinguishes itself from siblings by focusing on validation rather than data retrieval or formula generation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives or under what circumstances validation is needed. The description lacks context that would help an agent decide between this and other tools.
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. Dates show when Glama detected each change.
5 tool updates
v0.1.6- First observed
generate_art_formula - First observed
generate_artinfo_formula - First observed
get_artemis_data - First observed
get_artemis_supported_metrics_for_symbol - First observed
validate_artemis_api_key
TDQS
Each tool has a clearly distinct purpose: fetching time-series data, retrieving supported metrics, validating the API key, and generating two different formula types (ART for data, ARTINFO for metadata). No two tools overlap in function, making selection unambiguous.
The naming follows a mostly consistent verb_noun pattern (get_*, validate_*, generate_*), but there is slight variation: 'get_artemis_data' vs 'get_artemis_supported_metrics_for_symbol' and 'art' vs 'artinfo' prefixes. Still, each name clearly conveys its function, and the deviations are minor.
With 5 tools, the server is well-scoped for a focused API wrapper. It covers data retrieval, metadata discovery, key validation, and formula generation without bloat or unnecessary tools.
The tool set covers the core workflows: validating access, discovering supported metrics, retrieving data, and generating formulas for both time-series and asset info. A minor gap is the lack of a direct tool to list all symbols or fetch asset info without generating a formula, but this is not a critical dead-end.
Maintenance
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
Query cryptocurrency on-chain data, OHLCV prices, market data, and Research & QuickTake insights.
Crypto market signals and portfolio telemetry. 6 tools pay-per-call in USDC, no API key.
Blockchain analytics API for AI agents. Smart Money signals, wallet profiling, token analytics.
Blockchain analytics API for AI agents. Smart Money signals, wallet profiling, token analytics.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables interaction with the CoinGecko Pro API to access cryptocurrency data including price history and market metrics through both MCP and OpenAI function calling.9MIT
- FlicenseNot gradedqualityNot gradedmaintenanceEnables interaction with the Artemis API to retrieve and analyze cryptocurrency data, including accessing metrics, generating formulas, and validating API connections.2-
- AlicenseBqualityNot gradedmaintenanceThe Token Metrics Model Context Protocol (MCP) server provides comprehensive cryptocurrency data, analytics, and insights through function calling. This server enables AI assistants and agents to access Token Metrics' powerful API for real-time crypto market data, trading signals, price predictions, and advanced analytics.19318TypeScript-
- AlicenseAqualityCmaintenanceEnables AI assistants to access real-time on-chain crypto analytics, whale tracking, and market metrics through natural language queries. It provides access to over 245 endpoints for comprehensive data analysis of assets like Bitcoin, Ethereum, and stablecoins.7177MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jameselkins/artemis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server