Claude Setup Guide
Step-by-step instructions to add the Crypto.com Market Data MCP server to Claude
Claude Setup
This guide will walk you through adding the Crypto.com Market Data MCP server to Claude. Choose the setup method that matches your usage:
- Claude Web (claude.ai) - For browser-based usage
- Claude Desktop App - For the desktop application with configuration file
- Claude Code - For command line users
Both methods take about 5 minutes to complete.
Claude Web Setup
This section covers setup for the Claude web interface at claude.ai.
Before You Start
Make sure you have:
- A Claude account (free or Pro)
- Access to claude.ai
- A web browser (Chrome, Firefox, Safari, or Edge)
Step-by-Step Instructions
Step 1: Open Claude Web
- Open your web browser
- Go to claude.ai
- Sign in to your Claude account if you’re not already logged in
Step 2: Access Settings
- Look for the menu icon (three horizontal lines) or your profile picture in the top right corner
- Click on it to open the menu
- Select Settings from the dropdown menu
Finding Settings
Settings might also be accessible by clicking on your name or email address. Look for a gear icon ⚙️ which typically indicates settings.
Step 3: Navigate to Integrations
- In the Settings menu, look for “Connectors” in the sidebar
- Click on the connectors section
- You should see options to add new integrations or connectors
Feature Availability
MCP connectors in the Claude web version may be limited or in beta. If you don’t see the Connectors option, you may need to:
- Upgrade to Claude Pro
- Use the desktop application instead
- Wait for the feature to be available in your region
Step 4: Add New Integration
- Click the “Add custom connector” button
- You should see a form asking for integration details
Step 5: Enter Server Details
Fill in the following information exactly as shown:
Name:
Crypto.com Market Data Remote MCP URL:
https://mcp.crypto.com/market-data/mcp Copy Exactly
Use the copy button above to copy the URL exactly. Even a small typo will prevent the connector from working.
Click “Add” to proceed
Step 6: Configure Permissions (Optional)
Claude may ask for permission to access external data.
- Click “Connect” on the new connector
- Click “Configure”
- Select “Allow unsupervised”
Privacy Note
The Crypto.com MCP server only provides public market data. It doesn’t access your personal information, conversation history, or any private data.
Step 7: Refresh Your Browser
For the changes to take effect:
- Refresh the page (F5 or Ctrl+R on Windows, Cmd+R on Mac)
- Or close and reopen the claude.ai tab
- Wait a few seconds for the page to fully load
Step 8: Verify It’s Working
Let’s test if the integration is working:
- Start a new conversation by clicking “New chat” or the ”+” button
- Type this question: “What’s the current price of Bitcoin?”
- Press Enter and wait for the response
What to expect:
- ✅ Claude should give you the current, real-time price
- ✅ You might see a small indicator showing it’s using external data
- ✅ The response should include today’s date and recent market data
Success!
If you got a current price with today’s date, congratulations! The MCP server is working correctly.
Troubleshooting
The Integrations option doesn’t appear
Possible reasons:
- You’re using a free account (may need Claude Pro)
- The feature isn’t available in your region yet
- Your browser is blocking the feature
- The feature is still in beta/limited rollout
Solutions:
-
Upgrade to Claude Pro
- Go to Settings > Subscription
- Click “Upgrade to Pro”
- Complete the subscription process ($20/month)
-
Check browser compatibility
- Try Chrome, Firefox, Safari, or Edge
- Disable browser extensions temporarily
- Clear browser cache and cookies
- Try incognito/private mode
-
Contact Anthropic Support
- Ask about MCP availability in your region
- Request beta access if applicable
Can’t add the integration
Problem: The “Add Integration” button doesn’t work or is grayed out.
Solutions:
-
Verify your subscription
- Check if you have Claude Pro active
- Ensure payment is up to date
- Free tier may have limited integration access
-
Try a different browser
- Chrome and Edge usually have best compatibility
- Update your browser to the latest version
- Disable ad blockers or privacy extensions
-
Clear browser data
- Clear cache: Settings > Privacy > Clear browsing data
- Clear cookies for claude.ai
- Sign out and sign back in
- Try adding the integration again
Claude doesn’t use the integration
Problem: You ask about crypto prices but get old data or “I don’t have access to real-time data” responses.
Solutions:
-
Start a new conversation
- Click “New chat” or the ”+” button
- Try your question in the fresh conversation
- Old conversations may not use new integrations
-
Be explicit in your question
- Instead of: “Tell me about Bitcoin”
- Try: “What’s the current real-time price of Bitcoin right now?”
- Use phrases like:
- “current price”
- “latest data”
- “real-time information”
- “today’s market data”
-
Check if connector is enabled
- Go to Settings > Connectors
- Find Crypto.com Market Data
- Make sure toggle is ON
- If OFF, turn it on and refresh
-
Verify the URL is correct
- Settings > Connectors > Crypto.com Market Data
- URL should match exactly (compare with Step 5)
- No extra spaces or characters
- Fix any typos and save
-
Mention the integration explicitly
- Try: “Using the Crypto.com integration, what’s the current price of Bitcoin?”
- This explicitly tells Claude to use the integration
Error messages
Error: “Unable to connect to external server”
Solutions:
- Check your internet connection
- Verify the URL is exactly correct
- Wait a few minutes and try again
- The server might be temporarily busy
- Refresh your browser
Error: “Integration not authorized”
Solutions:
- Remove the integration completely
- Add it again from scratch
- Make sure you’re signed in to Claude
- Check if your Pro subscription is active
Error: “Rate limit exceeded”
Solutions:
- You may have made too many requests
- Wait 5-10 minutes before trying again
- Reduce the frequency of your queries
- This is a temporary limitation
Understanding Integration Indicators
When Claude uses the MCP integration, you might see:
- 🔌 A small icon or badge indicating external data
- 📊 A note saying “Using Crypto.com Market Data”
- 🕐 A timestamp showing when data was fetched
- 🔗 A link or reference to the data source
These indicators confirm the integration is working.
Claude Desktop Setup
This section covers setup for the Claude Desktop application using a configuration file.
Before You Start
Make sure you have:
- Claude Desktop app installed on your computer
- A text editor (Notepad, TextEdit, VS Code, etc.)
- Basic familiarity with editing JSON files
Step 1: Locate the Configuration File
The Claude Desktop configuration file is located in different places depending on your operating system:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json Windows:
%APPDATA%\Claude\claude_desktop_config.json Linux:
~/.config/Claude/claude_desktop_config.json Finding the File
- On macOS: Open Finder, press
Cmd+Shift+G, paste the path, and press Enter - On Windows: Open File Explorer, paste the path in the address bar, and press Enter
- On Linux: Use your file manager or terminal to navigate to the path
Step 2: Open the Configuration File
- Locate the file using the path above for your operating system
- Right-click on
claude_desktop_config.json - Select “Open with” and choose a text editor
- If the file doesn’t exist, create a new file with this exact name
File May Not Exist
If you don’t see the claude_desktop_config.json file, you may need to create it. Make sure to use the exact filename and location shown above.
Step 3: Add the MCP Server Configuration
Copy and paste the following JSON configuration into your file:
If the file is empty or new:
{
"mcpServers": {
"crypto-market-data": {
"type": "http",
"url": "https://mcp.crypto.com/market-data/mcp"
}
}
}
If the file already has content:
Look for the "mcpServers" section. If it exists, add the crypto-market-data configuration inside it:
{
"mcpServers": {
"existing-server": {
"type": "http",
"url": "https://example.com/other-server"
},
"crypto-market-data": {
"type": "http",
"url": "https://mcp.crypto.com/market-data/mcp"
}
}
}
JSON Syntax
Make sure to:
- Add a comma after the previous server entry (if any)
- Keep all brackets and braces properly matched
- Use double quotes, not single quotes
- Don’t add a comma after the last entry
Step 4: Save the File
- Save the file (Ctrl+S on Windows/Linux, Cmd+S on macOS)
- Close the text editor
- Make sure the file is saved in the correct location
Step 5: Restart Claude Desktop
- Quit Claude Desktop completely (not just close the window)
- macOS: Right-click the Claude icon in the Dock > Quit
- Windows: Right-click the Claude icon in the system tray > Exit
- Linux: Use your system’s method to quit the application
- Wait a few seconds
- Reopen Claude Desktop
Force Quit if Needed
If Claude doesn’t quit properly:
- macOS: Press
Cmd+Option+Esc, select Claude, click Force Quit - Windows: Open Task Manager, find Claude, click End Task
- Linux: Use
killall claudeor your system monitor
Step 6: Verify It’s Working
- Open Claude Desktop
- Start a new conversation
- Type: “What’s the current price of Bitcoin?”
- Press Enter and wait for the response
What to expect:
- ✅ Claude should give you the current, real-time price
- ✅ You might see a small indicator showing it’s using the MCP server
- ✅ The response should include today’s date and recent market data
Success!
If you got a current price with today’s date, congratulations! The MCP server is working correctly.
Troubleshooting Desktop Setup
Configuration file not found:
- Create the file manually in the correct location
- Make sure the directory exists (create it if needed)
- Use the exact filename:
claude_desktop_config.json
JSON syntax errors:
- Use a JSON validator to check your file
- Make sure all brackets match
- Check for missing or extra commas
- Ensure you’re using double quotes
Claude doesn’t use the MCP server:
- Verify the configuration is saved correctly
- Make sure you fully quit and restarted Claude
- Check the file location is correct for your OS
- Try asking explicitly: “Using the crypto market data, what’s the price of Bitcoin?”
Connection errors:
- Verify the URL is exactly:
https://mcp.crypto.com/market-data/mcp - Check your internet connection
- Make sure the
"type"is set to"http" - Try restarting Claude Desktop again
Claude Code Setup
This section covers setup for Claude Code, Anthropic’s code editor/IDE.
Before You Start
Make sure you have:
- Claude Code installed on your computer
- Access to a terminal or command line
- Basic familiarity with command line tools
Step 1: Open Your Terminal
- Open your terminal or command prompt
- Navigate to your project directory (optional, but recommended)
Project vs User Scope
- If you run the command in a project directory, the MCP server will only be available for that project
- If you want it available everywhere, use the
-s userflag (shown below)
Step 2: Add the MCP Server
Run the following command in your terminal:
claude mcp add --transport http -s user crypto-market-data https://mcp.crypto.com/market-data/mcp Command breakdown:
claude mcp add- Adds a new MCP server--transport http- Specifies HTTP transport (for remote servers)-s user- Makes it available in all your projects (user scope)crypto-market-data- The name for this MCP serverhttps://mcp.crypto.com/market-data/mcp- The server URL
Alternative: Project Scope
To add the server only for the current project, omit the -s user flag:
claude mcp add --transport http crypto-market-data https://mcp.crypto.com/market-data/mcp Step 3: Verify Installation
After running the command, you should see a confirmation message. The MCP server is now configured!
Step 4: Test It Out
- Open Claude Code
- Start a new chat or open an existing project
- Ask: “What’s the current price of Bitcoin?”
- Wait for the response
What to expect:
- ✅ Claude should give you the current, real-time price
- ✅ You might see an indicator showing it’s using the MCP server
- ✅ The response should include today’s date and recent market data
Success!
If you got a current price with today’s date, congratulations! The MCP server is working correctly.
Managing MCP Servers in Claude Code
List all configured MCP servers:
claude mcp list Remove an MCP server:
claude mcp remove crypto-market-data View MCP server details:
claude mcp show crypto-market-data Troubleshooting Claude Code Setup
Command not found:
- Make sure Claude Code is properly installed
- Verify the
claudecommand is in your PATH - Try restarting your terminal
Server not responding:
- Check your internet connection
- Verify the URL is correct:
https://mcp.crypto.com/market-data/mcp - Try removing and re-adding the server
Claude doesn’t use the MCP server:
- Make sure you’re in the right scope (user vs project)
- Try explicitly asking: “Using the crypto market data, what’s the price of Bitcoin?”
- Restart Claude Code
What’s Next?
Now that you’ve set up the integration, explore what you can do:
- Example Prompts - 30+ example questions to try
- Features - Learn about all available data
- Troubleshooting - Solutions to common problems
- FAQ - Frequently asked questions
Bookmark This Page
Save this page for future reference. You can also share it with friends who want to add crypto data to their Claude!
Need More Help?
If you’re still having issues:
- Check the Troubleshooting Guide
- Read the FAQ
- Try the Claude Desktop Setup instead
- Contact Anthropic support for Claude-specific issues