@forcrypto/mcp-server
v0.1.1
Published
MCP server for managing your For Crypto store through Claude Desktop
Readme
For Crypto MCP Server
Control your For Crypto store through Claude. Manage listings, analytics, email workflows, discounts, and more using natural language.
Setup
1. Get your API key
Go to Settings > API & Integrations on forcrypto.market and generate a seller API key.
2. Add to Claude Desktop
Open your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"forcrypto": {
"command": "npx",
"args": ["@forcrypto/mcp-server"],
"env": {
"FORCRYPTO_API_KEY": "fcs_your_api_key_here"
}
}
}
}3. Restart Claude Desktop
After saving the config, restart Claude Desktop. You should see "ForCrypto" in your available tools.
Available Tools
Listings
- get_listings - List all your listings with title, price, status, and category
- get_listing - Get full details for a specific listing
- update_listing - Update title, description, price, or category
Storefront
- get_storefront - View your seller profile and theme configuration
- update_theme - Customize colors, fonts, border radius, and layout
Analytics
- get_analytics - View sales data, revenue, ratings, and conversion metrics
- get_subscribers - List email subscribers for a listing
- get_workflow - View drip email workflow configuration
- create_drip_step - Add a new step to your drip email sequence
- update_drip_step - Edit an existing drip email step
- send_broadcast - Send an email to all opted-in subscribers
Discounts
- get_discounts - View active discount codes for a listing
- create_discount - Create a new discount code (percentage or fixed amount)
Reviews
- get_reviews - View reviews and ratings for a listing
Example Prompts
- "Show me my listings and their sales numbers"
- "Update the price of my Python course to $29"
- "Create a 20% off discount code LAUNCH20 for my ebook"
- "Send a broadcast email to my course subscribers about the new module"
- "Set up a 3-step drip email sequence for my template pack"
- "Change my storefront theme to use a dark background with blue accents"
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| FORCRYPTO_API_KEY | Yes | Your seller API key (starts with fcs_) |
| FORCRYPTO_API_URL | No | API base URL (defaults to https://forcrypto.market) |
Rate Limits
The seller API allows 60 requests per minute per API key.
Security
- Your API key is sent via the
X-API-Keyheader over HTTPS - Keys are stored as SHA-256 hashes on the server
- You can revoke and regenerate your key at any time in Settings
- Each seller account can have one active API key
