Sponsored by Deepsite.site

D3vtools

Created By
Igor Ilica month ago
MCP server for 200+ developer utilities — discover and execute tools through a unified API.
Content

D3vTools MCP Server

MCP Server License: MIT Live URL smithery badge

A Model Context Protocol (MCP) server that provides AI agents with access to 100+ developer utilities — encoders, decoders, color converters, cryptographic tools, formatters, and more. Built for AI coding assistants that need to transform data, inspect formats, or convert between units during development.

The MCP server runs at https://d3v.tools/mcp/tools with streamable-http transport. No authentication is required.


Tools

This server exposes 3 tools that work together as a discover-execute pipeline:

list_tools_catalog

List all available tools with optional filtering by category, tier (free/premium), or slug.

Parameters:

NameTypeRequiredDescription
categorystringnoFilter by category slug (e.g. encode-decode, color, crypto)
tierstringnoFilter by tier (free or premium)
slugstringnoFilter by specific tool slug

Example:

list tools in the "color" category → list_tools_catalog({ "category": "color" })

get_tool_details

Get the full API contract — required fields, input type, rate limits, and keywords — for one tool.

Parameters:

NameTypeRequiredDescription
categorystringyesTool category slug
slugstringyesTool slug

Example:

inspect a tool → get_tool_details({ "category": "encode-decode", "slug": "base64-encode" })

execute_tool

Execute a tool with input and optional parameters. Supports text inputs, conversion-style (from/to), and structured options.

Parameters:

NameTypeRequiredDescription
categorystringyesTool category slug
slugstringyesTool slug
inputstringnoPrimary input value
optionsobjectnoStructured arguments for complex tools
fromstringnoSource unit (conversion tools)
tostringnoDestination unit (conversion tools)
valuestringnoValue for conversion (used with from/to)

Example:

encode text → execute_tool({
  "category": "encode-decode",
  "slug": "base64-encode",
  "input": "Hello, World!"
})

Usage Flow

The tools are designed to be chained:

  1. Discover — call list_tools_catalog to see available tools
  2. Inspect — call get_tool_details to learn a tool's API contract
  3. Execute — call execute_tool to run the tool with your input

Connecting

Server Details

PropertyValue
URLhttps://d3v.tools/mcp/tools
Transportstreamable-http
AuthenticationNone
Capabilitiestools

Client Configurations

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "d3vtools": {
      "url": "https://d3v.tools/mcp/tools",
      "transport": "streamable-http"
    }
  }
}

OpenCode

Add to your opencode.json:

{
  "mcpServers": {
    "d3vtools": {
      "url": "https://d3v.tools/mcp/tools",
      "transport": "streamable-http"
    }
  }
}

Cursor

Add in Cursor Settings → MCP Servers:

{
  "mcpServers": {
    "d3vtools": {
      "url": "https://d3v.tools/mcp/tools",
      "transport": "streamable-http"
    }
  }
}

Auto-Discovery

The server is advertised via .well-known/mcp.json at https://d3v.tools/.well-known/mcp.json, so MCP-aware clients (VS Code extension, etc.) can discover it automatically.


Example Walkthrough

// Step 1: Find available tools
→ list_tools_catalog({ "category": "crypto" })

// Step 2: Get details on a specific tool
→ get_tool_details({ "category": "crypto", "slug": "uuid-generator" })

// Step 3: Execute the tool
→ execute_tool({ "category": "crypto", "slug": "uuid-generator", "input": "" })

Supported Categories

CategoryExamples
encode-decodeBase32, Base58, Base64, URL, HTML, JWT, QR code
colorHex to RGB, RGB to HSL, color name lookup
cryptoUUID, hash generators, HMAC, password generators
formatterJSON, XML, CSS, SQL formatters / minifiers
converterTemperature, length, weight, currency
textCharacter counter, case converter, slugify
imageData URI conversion, SVG optimization
mathNumber base converter, percentage calculator
networkIP calculator, port checker
dateTimestamp converter, timezone converter

Architecture

┌──────────────┐     Streamable HTTP      ┌──────────────────────┐
│  AI Agent    │ ◄──────────────────────► │  d3v.tools/mcp/tools │
│  (Claude,    │                           │                      │
│   Cursor,    │   list_tools_catalog      │  Laravel + laravel/  │
│   OpenCode)  │   get_tool_details        │  mcp package         │
│              │   execute_tool            │                      │
└──────────────┘                           └──────────┬───────────┘
                                                        └──► ToolExecutionService
                                                             └──► Service classes
                                                                   (client-side JS
                                                                    or server-side PHP)

The server is built with Laravel and the laravel/mcp package. Client-side tools run in-browser JavaScript; server-side tools use PHP service classes. All processing happens on the server or client side — no external API calls.


Rate Limits

TierRequests/minute
Anonymous10
Registered (free)30
Premium1000+

License

MIT

Server Config

{
  "mcpServers": {
    "d3vtools": {
      "url": "https://d3v.tools/mcp/tools",
      "transport": "streamable-http"
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
WindsurfThe new purpose-built IDE to harness magic
ChatWiseThe second fastest AI chatbot™
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Amap Maps高德地图官方 MCP Server
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
CursorThe AI Code Editor
Tavily Mcp
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Serper MCP ServerA Serper MCP Server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Playwright McpPlaywright MCP server
DeepChatYour AI Partner on Desktop