- Home
- MCP servers
- DROYD
DROYD
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"droyd-ai-droyd-mcp-server": {
"command": "npx",
"args": [
"-y",
"@droyd/mcp-server"
],
"env": {
"DROYD_API_KEY": "your-api-key",
"DROYD_BASE_URL": "https://api.droyd.ai"
}
}
}
}You can run a dedicated MCP server to connect Claude Desktop, Claude Code, and other MCP clients with DROYD’s crypto research, project discovery, and trading capabilities. This server exposes intelligent agents, content search, project discovery, market screening, watchlists, and trading operations, enabling interactive workflows across research and trading tasks.
How to use
You will start the MCP server and connect your MCP client to it using a local or remote runtime. Once connected, you can chat with DROYD AI agents for research, trading, or data tasks, search the knowledge base for crypto content, discover and filter projects, manage market watchlists, and open or manage trades with configurable order legs and risk controls. The server handles multi-turn conversations, semantic project queries, and P&L visibility, giving you a streamlined workflow from conversation to actionable trades.
How to install
Prerequisites: ensure you have Node.js and npm installed on your machine.
Option 1: npm (Recommended) Run the MCP server using npx to start quickly.
npx @droyd/mcp-server
Option 2: Clone the repository and install dependencies, then build the server locally.
git clone https://github.com/droyd/mcp-server.git
cd mcp-server
npm install
npm run build
Configuration
Configure your MCP client to connect to the DROYD MCP server by adding MCP server definitions. The following examples show how to configure Claude Desktop, Claude Code, and a local development setup.
{
"mcpServers": {
"droyd": {
"command": "npx",
"args": ["-y", "@droyd/mcp-server"],
"env": {
"DROYD_API_KEY": "your-api-key"
}
}
}
}
{
"mcpServers": {
"droyd": {
"command": "npx",
"args": ["-y", "@droyd/mcp-server"],
"env": {
"DROYD_API_KEY": "your-api-key"
}
}
}
}
{
"mcpServers": {
"droyd": {
"command": "node",
"args": ["/path/to/droyd-mcp-server/dist/index.js"],
"env": {
"DROYD_API_KEY": "your-api-key"
}
}
}
}
Environment variables
The server requires DROYD API credentials. You can optionally override the API base URL.
DROYD_API_KEY=your-api-key
DROYD_BASE_URL=https://api.droyd.ai
Notes
If you use the local development path, ensure the path to dist/index.js matches your build output. For production usage, prefer the npx approach to load the latest MCP server package.
Available tools
Agent Chat
Chat with DROYD AI agents across research, trading, and data tasks with multi-turn conversations.
Content Search
Search DROYD's knowledge base for crypto news, posts, tweets, and more.
Project Discovery
Find projects by name, symbol, address, or semantic concepts.
Market Screening
Filter projects using market criteria or natural language queries.
Watchlists
Access personal and swarm watchlists with agent evaluations.
Trading
Open positions with flexible leg configurations including stops and takes.
Position Management
Manage trades and view P&L.