惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
U
Unit 42
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
L
LangChain Blog
Engineering at Meta
Engineering at Meta
量子位
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
A
About on SuperTechFans
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🚀 I Built Trade MCP: Remote MCP Server for Crypto Tools a...
Ama · 2026-05-31 · via DEV Community

I built Trade MCP.

GitHub: https://github.com/AmaLS367/TradeMcp

And no, this is not another “AI trading bot that will make you rich while you sleep” thing.

That stuff sounds cool until you remember one small detail:

letting an AI agent freely touch your exchange account is insane.

So I built Trade MCP around a different idea:

AI should research, compare and prepare.
Humans should approve dangerous actions.

Simple. Safer. Actually usable.


🧠 What is Trade MCP?

Trade MCP is a remote MCP server and dashboard for crypto workflows.

It connects AI clients to:

  • exchange data
  • market data providers
  • encrypted API key storage
  • Earn comparison tools
  • portfolio context
  • human-approved trading workflows
  • a dashboard for managing everything

The goal is not to replace your brain.

The goal is to give your AI assistant real tools without turning it into a financial gremlin with API keys.


⚠️ The problem

MCP is powerful.

But when crypto gets involved, things become dangerous very quickly.

A normal AI crypto setup usually looks like one of these:

  1. ChatGPT with no live data
  2. A local script with messy .env files
  3. An agent with too much access
  4. A trading bot that can act before you even understand what happened

That is not good enough.

If money is involved, the system needs:

  • encrypted credentials
  • auth
  • policies
  • logs
  • dashboard visibility
  • human approval
  • clean tool boundaries

So I started building that.


🔥 What Trade MCP supports

🔐 Encrypted exchange connections

Trade MCP is built for exchange connections like:

  • Binance
  • Bybit

API keys are not supposed to just sit in random config files.

They are encrypted with AES-256-GCM before storage.

Because “just put your exchange key in plain text” is not a security strategy. It is a cry for help.


📊 Market data providers

AI models do not magically know live market data.

So Trade MCP supports external provider connections for market context.

Examples:

  • CoinGecko
  • CryptoPanic
  • TAAPI.IO
  • Twelve Data
  • OANDA
  • NewsAPI
  • Messari

This lets AI answer using actual data instead of confident nonsense.

And confident nonsense in trading is expensive.


💰 Earn comparison

Crypto Earn products are annoying to compare manually.

Different platforms.
Different APY.
Different assets.
Different lock periods.
Different conditions.

Trade MCP is built to help aggregate and compare those opportunities so an AI client can give a more useful answer.

Not just:

“Maybe staking is good.”

But actual structured comparison.


🌐 Remote MCP endpoint

Local MCP is cool for small scripts.

But for a real tool, remote MCP feels much better.

Trade MCP gives you a remote MCP server approach:

  • one server
  • one endpoint
  • centralized auth
  • centralized tool management
  • dashboard-based setup
  • easier deployment
  • cleaner multi-client usage

This makes the project feel less like a hacky local experiment and more like infrastructure.


🖥️ Dashboard

Trade MCP also has a React dashboard.

Because editing everything through config files gets old fast.

The dashboard is meant for:

  • managing exchange connections
  • managing providers
  • checking configuration
  • controlling workflows
  • making the server usable by humans, not only terminal goblins

A tool can be powerful, but if the UX is painful, people will not use it.


🧩 Tech stack

The project uses:

  • TypeScript
  • Node.js
  • Express
  • React
  • Vite
  • Firebase Auth
  • Firestore
  • CCXT
  • MCP SDK
  • Docker
  • Vitest
  • Zod

So it is not just a lonely script in a folder named final-final-real-version.

It has a real app structure, backend, frontend, docs, tests and deployment setup.


🛡️ My philosophy for AI trading tools

I do not think AI agents should instantly execute trades with full freedom.

That sounds impressive in a demo.

In real life, it is how you speedrun regret.

A better workflow is:

🤖 AI should:

  • research
  • compare data
  • check market context
  • summarize balances
  • find Earn opportunities
  • prepare structured proposals
  • explain possible risks

👤 Human should:

  • review
  • approve
  • reject
  • adjust
  • decide

That is the core idea behind Trade MCP.

Let AI prepare.
Let humans approve.


⚙️ Example workflow

Imagine this:

  1. You connect Binance or Bybit
  2. You add market data providers
  3. You connect your AI client to Trade MCP
  4. You ask something like:

Compare my USDT Earn options and find better available opportunities.

Or:

Analyze BTC market context and prepare a possible trade plan, but do not execute anything.

The AI can use MCP tools to gather context.

Then it can prepare an answer or proposal.

You stay in control.

That is the important part.


🧨 Why this is useful

Because AI agents are becoming more capable.

But more capability without more control is not automatically good.

Especially in crypto.

Trade MCP tries to give the agent useful abilities while still keeping the dangerous parts behind proper structure.

That means:

  • no blind autopilot trading
  • no raw key chaos
  • no random local config soup
  • no “trust the model bro” energy

Just a cleaner foundation for AI-assisted crypto workflows.


🚧 Current status

Trade MCP is still evolving.

Things I want to improve:

  • better AI client connection guides
  • more provider integrations
  • stronger policy profiles
  • better trade proposal flow
  • clearer risk summaries
  • audit logs
  • dashboard polish
  • more tests
  • better examples

So no, this is not “finished forever”.

But it is already a serious foundation.


✅ TL;DR

I built Trade MCP.

It is a remote MCP server and dashboard for crypto workflows.

It supports:

  • exchange connections
  • encrypted API keys
  • market data providers
  • Earn comparison
  • remote MCP access
  • dashboard management
  • human-approved trading workflows

The goal is simple:

AI researches and prepares. Humans approve.

GitHub: https://github.com/AmaLS367/TradeMcp

If you are into MCP, AI agents, crypto tools, secure automation or trading infrastructure, check it out.