MRC Data -- All Client Configurations
April 15, 2026 ยท View on GitHub
Setup guides for every MCP-compatible client. Get a free API key at api.meacheal.ai/apply.
Universal config -- most clients accept this JSON format:
{
"mcpServers": {
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
If your client isn't listed below, try pasting the above into your client's MCP config file.
IDEs & Code Editors
Claude Desktop (remote HTTP)
Add to claude_desktop_config.json:
{
"mcpServers": {
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Claude Desktop (stdio / npx)
{
"mcpServers": {
"mrc-data": {
"command": "npx",
"args": ["-y", "mrc-data"],
"env": { "MRC_API_KEY": "YOUR_API_KEY" }
}
}
}
Claude Code
claude mcp add --scope user --transport http mrc-data \
https://api.meacheal.ai/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
VS Code (Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"mrc-data": {
"type": "http",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
JetBrains (IntelliJ / PyCharm / WebStorm)
Add to .junie/mcp/mcp.json (project-level):
{
"mcpServers": {
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"mrc-data": {
"serverUrl": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Cline
Add to Cline MCP settings:
{
"mcpServers": {
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Roo Code
Add to .roo/mcp.json (project) or ~/.vscode/globalMcp.json (global):
{
"mcpServers": {
"mrc-data": {
"type": "streamable-http",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Continue.dev
Add to ~/.continue/config.yaml:
mcpServers:
- name: mrc-data
type: streamable-http
url: https://api.meacheal.ai/mcp
requestOptions:
headers:
Authorization: Bearer YOUR_API_KEY
Zed
Add to Zed settings (settings.json):
{
"context_servers": {
"mrc-data": {
"settings": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
}
Sourcegraph Cody
Add to VS Code settings.json:
{
"cody.mcpServers": {
"mrc-data": {
"type": "streamable-http",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Agent Frameworks
Hermes Agent (Nous Research)
Add to ~/.hermes/config.yaml:
mcp_servers:
mrc-data:
url: "https://api.meacheal.ai/mcp"
headers:
Authorization: "Bearer YOUR_API_KEY"
Or via CLI:
hermes mcp add mrc-data --url "https://api.meacheal.ai/mcp"
n8n
Add an MCP Client Tool node to your AI Agent workflow:
- Create credentials: HTTP Stream URL =
https://api.meacheal.ai/mcp - Authentication: Bearer, token =
YOUR_API_KEY
Dify
Install dify-plugin-tools-mcp_sse from Marketplace, then configure:
{
"mcpServers": {
"mrc-data": {
"transport": "streamable_http",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" },
"timeout": 60
}
}
}
LibreChat
Add to librechat.yaml:
mcpServers:
mrc-data:
type: streamable-http
url: https://api.meacheal.ai/mcp
headers:
Authorization: "Bearer YOUR_API_KEY"
Desktop Apps
Raycast AI
Open Manage MCP Servers > Show Config File, add:
{
"mcpServers": {
"mrc-data": {
"type": "streamable-http",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Warp Terminal
Settings > MCP Servers > + Add:
{
"mrc-data": {
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
Cherry Studio
Settings > MCP Servers > Add Server:
- Type: Streamable HTTP
- URL:
https://api.meacheal.ai/mcp - Header:
Authorization=Bearer YOUR_API_KEY
Open WebUI
Admin Settings > External Tools > + Add Server:
- Type: MCP (Streamable HTTP)
- URL:
https://api.meacheal.ai/mcp - Auth: Bearer token =
YOUR_API_KEY
AnythingLLM
Add to MCP config (anythingllm_mcp_servers.json):
{
"mcpServers": {
"mrc-data": {
"type": "streamable",
"url": "https://api.meacheal.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
SDK & REST API
TypeScript / JavaScript
npm install mrc-data
import { MRCData } from "mrc-data";
const mrc = new MRCData({ apiKey: "YOUR_API_KEY" });
const suppliers = await mrc.searchSuppliers({ province: "guangdong", product_type: "sportswear" });
Python
pip install mrc-data
from mrc_data import MRCData
mrc = MRCData(api_key="YOUR_API_KEY")
suppliers = mrc.search_suppliers(province="guangdong", product_type="sportswear")
REST API (ChatGPT Actions, Gemini, Copilot, any HTTP client)
OpenAPI 3.1 spec: api.meacheal.ai/openapi.json
curl https://api.meacheal.ai/v1/suppliers?province=guangdong \
-H "Authorization: Bearer YOUR_API_KEY"
Quick Start (npx)
No install needed:
MRC_API_KEY=your_key npx mrc-data
Don't see your client? Most MCP-compatible tools accept the universal JSON config at the top of this page. Check your client's MCP documentation for the config file location.
Get a free API key: api.meacheal.ai/apply -- instant, no waiting.