Production-quality Rust implementation of an MCP server for Dex Personal CRM
{
"mcpServers": {
"dex-mcp-server-rust": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Production-quality Rust implementation of an MCP server for Dex Personal CRM
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 149 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Dex Mcp Server Rust and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A production-quality Rust implementation of a Model Context Protocol (MCP) server for Dex Personal CRM.
This MCP server enables AI assistants (like Claude) to interact with Dex Personal CRM, providing capabilities for:
git clone https://github.com/yourusername/DexMCPServerRust.git
cd DexMCPServerRust
cp .env.example .env
# Edit .env and add your Dex API key
cargo build --release
cargo run --release
Configuration is managed through environment variables. Create a .env file based on .env.example:
DEX_API_KEY=your_api_key_here
DEX_API_BASE_URL=https://api.getdex.com/api/rest
MAX_MATCH_RESULTS=10
MATCH_CONFIDENCE_THRESHOLD=70
CACHE_TTL_MINUTES=5
To use this MCP server with Claude Desktop, add it to your configuration:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"dex": {
"command": "C:\\path\\to\\DexMCPServerRust\\target\\release\\dex-mcp-server.exe",
"env": {
"DEX_API_KEY": "your_api_key_here"
}
}
}
}
See claude_desktop_config_example.json for a complete example.
# Run all tests
cargo test
# Run library tests only
cargo test --lib
# Run specific test
cargo test test_name
# Run with output
cargo test -- --nocapture
# Format code
cargo fmt
# Run linter
cargo clippy
# Run linter with warnings as errors
cargo clippy -- -D warnings
# Run benchmarks
cargo bench
This project uses GitHub Actions for continuous integration and automated releases.
CI Pipeline: Runs on every push and PR
cargo fmt)Release Pipeline: Automated semantic versioning