io.github.daedalusdevelopmentgroup/ddg-agent-services-mcp
OfficialThis MCP server provides access to 106+ agent-payable micro-services across AI/ML, web, security, blockchain, and utility domains — all payable via x402 or direct crypto with no human in the loop.
Service Discovery & Catalog
List all available services (
ddg_list_services) with pricing, view public resource index (ddg_public_resource_index), fetch specific DDG manifests/docs (ddg_fetch_public_resource), and check agent/service/rail status (ddg_agent_status).
AI & Model Services
List available models (
ddg_list_models) and local runtime options like Ollama, llama.cpp, LM Studio, vLLM (ddg_list_local_runtime_options).Run paid AI model routes (
ddg_run_paid_model) for chat completions, LLM judging, embeddings, summarization, sentiment analysis, translation, and image generation.Request new Ollama models for operator review (
ddg_request_ollama_model).
Payments & Orders
Quote payment cost without executing compute (
ddg_quote_payment), submit paid orders (ddg_submit_order), poll order status (ddg_order_status), and fetch completed artifacts (ddg_order_artifact).Run a $0.01 transaction smoke test (
ddg_tx_smoke_test) and review checkout/payment conformance (ddg_checkout_conformance).
Security & Safety
Review the MCP security profile (
ddg_mcp_security_profile), browse the security service catalog (ddg_security_service_catalog), and run free static AI skill/workflow safety scans (ddg_skill_safety_scan).
Key Paid Services Available
Web/Network: Web search, URL fetching, screenshots, DNS lookups, WHOIS, IP geolocation, robots.txt checks.
Security: Threat check, SSL cert info, HTTP header analysis, TLS audit, subdomain enumeration, prompt injection scan, MCP tool security audit.
Blockchain: Contract ABI lookup, EVM RPC proxy, price feeds.
Compute/Docs: Python code execution (Docker sandbox), PDF extraction, OCR, QR code generation.
Utilities: Hashing, base64 encode/decode, UUID generation, timestamps, random data, JSON validation, text diff, language detection.
Stripe payment rail integration for processing payments (not yet live).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@io.github.daedalusdevelopmentgroup/ddg-agent-services-mcprun a payment readiness audit on my agent"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DDG Agent-Payable Services
Pay-per-call AI agent services gateway. DDG gives agents one x402/direct-crypto entry point for callable tools, OpenAI-compatible routes, readiness audits, MCP security checks, discovery repair, receipts, and marketplace-ready proof artifacts.
124 x402/direct-crypto services for AI agents. The largest agent-payable service surface in the x402 ecosystem — from $0.001 utilities (DNS, hash, UUID) to $0.01 social/financial/agent-infra services. All fully automated with zero human in the loop. Includes an OpenAI-compatible gateway (/v1/chat/completions, /v1/models, /v1/embeddings).
https://agents.daedalusdevelopmentgroup.comQuick Start
One-liner SDK (zero framework deps)
from ddg_agent_services_mcp import ddg
client = ddg(agent_id="my-agent", private_key="0x...")
result = client.post("/v1/site-audit", {"url": "https://example.com"})Or configure once via environment:
export DDG_AGENT_ID="my-agent"
export DDG_PRIVATE_KEY="0x..."from ddg_agent_services_mcp import ddg
client = ddg() # reads from envOpenAI-compatible gateway
Drop-in replacement for openai-python — point any OpenAI client at DDG:
from ddg_agent_services_mcp import create_openai_client
client = create_openai_client(agent_id="my-agent", private_key="0x...")
response = client.chat.completions.create(
model="auto",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)Supported routes: GET /v1/models, POST /v1/chat/completions, POST /v1/embeddings
Or use the standard openai package directly:
from openai import OpenAI
client = OpenAI(
base_url="https://agents.daedalusdevelopmentgroup.com/v1",
api_key="ddg-x402",
default_headers={"X-Agent-Id": "my-agent"},
)Install
pip install ddg-agent-services-mcp
# With framework support:
pip install ddg-agent-services-mcp[langchain] # or crewai, openai-agents, autogen, etc.
pip install ddg-agent-services-mcp[all-frameworks] # everythingUse with any framework
from ddg_agent_services_mcp.tools import create_langchain_tools
tools = create_langchain_tools(
agent_id="my-agent",
private_key="0x...", # Your EVM wallet key (Base USDC)
)
# Pass tools to your LangChain agent8 frameworks supported: LangChain, CrewAI, OpenAI Agents SDK, AutoGen, PydanticAI, LlamaIndex, Google ADK, and MCP.
MCP (Claude / Cursor / Hermes)
{
"mcpServers": {
"ddg-agent-services": {
"command": "npx",
"args": ["-y", "@smithery/cli@latest", "install", "0xcircuitbreaker/ddg-agent-services-mcp"]
}
}
}Or direct HTTP: https://mcp.daedalusdevelopmentgroup.com/mcp
Related MCP server: AgentPay
Payment Rails
Rail | Status | Networks |
x402 | ✅ Live | Base, Polygon, Arbitrum, World Chain, Solana (USDC) |
direct_crypto_auto | ✅ Live | 13 asset families: EVM/stablecoins (ETH, USDC, USDT), BTC, BCH, LTC, DOGE, SOL, TRX, XRP, XLM, ALGO, DOT, ZEC, XMR |
direct_crypto_manual | ✅ Live | Operator-confirmed fallback |
MPP/Tempo | ✅ Live | Settlement-proven |
Service Catalog (124 services)
Social Data (NEW — demand capture from twit.sh/glim.sh/StableSocial)
Service | Price | Description |
| $0.01 | Search Twitter/X posts via public syndication |
| $0.01 | Search Reddit posts and comments |
| $0.01 | Get a Reddit post with top comments |
| $0.01 | Get transcript/subtitles for a YouTube video |
| $0.01 | Search Hacker News stories and comments |
Financial Data (NEW — demand capture from 2s.io/BlockRun)
Service | Price | Description |
| $0.01 | Current stock price, OHLC, 52-week range (Yahoo Finance) |
| $0.01 | Historical OHLCV candles (Yahoo Finance) |
| $0.01 | Gold, silver, oil, copper, wheat, etc. |
| $0.01 | Foreign exchange rates for any pair |
| $0.01 | Search SEC EDGAR filings by ticker/query |
Agent Infrastructure (NEW — unique, no competitor has these)
Service | Price | Description |
| $0.01 | Webhook delivery with retry, HMAC signing, delivery proof |
| $0.01 | Schedule one-shot or recurring HTTP tasks via systemd |
| $0.01 | Playwright browser automation: navigate, click, fill, extract |
| $0.01 | Extract structured JSON from any URL using fetch + LLM |
| $0.01 | Detect content changes at a URL (hash-based diff) |
AI / ML (GPU-backed on GTX 1080)
Service | Price | Description |
| pay-per-call | OpenAI-compatible chat completions gateway |
| free | List available model aliases |
| $0.0005 | 768-dim vectors (Ollama nomic-embed-text) |
| $0.03 | Stable Diffusion v1.5 on GPU |
| pay-per-call | Bounded agent-task endpoint (local runtime) |
| $0.02 | Multi-model consensus via llm-judge |
| $0.01 | Neutral judge for multi-model consensus |
| $0.005 | Local LLM summarization |
| $0.002 | Sentiment analysis |
| $0.003 | Language translation |
| $0.001 | Language detection |
Network & Web
Service | Price | Description |
| $0.005 | SearXNG aggregator (20+ engines) |
| $0.002 | Raw content + headers from any URL |
| $0.001 | Quick HEAD liveness check |
| $0.001 | robots.txt compliance check |
| $0.001 | IP → country/city/ISP |
| $0.001 | DNS records (A/AAAA/MX/TXT/NS) |
| $0.002 | Domain registration data |
| $0.002 | Extract hyperlinks from a page |
| $0.002 | Clean markdown extraction |
| $0.005 | Headless Chromium screenshot |
Security
Service | Price | Description |
| $0.005 | URL/wallet reputation (URLhaus + TLS) |
| $0.002 | SSL certificate chain + expiry |
| $0.001 | Security header analysis |
| $0.005 | Subdomain discovery via CT logs |
| $0.002 | TLS version + cipher suite audit |
| $0.01 | Prompt injection vulnerability scan |
| $0.05 | MCP server security audit |
Blockchain
Service | Price | Description |
| $0.002 | Verified ABI from block explorers |
| $0.005 | EVM RPC proxy (Base/Ethereum) |
Compute & Documents
Service | Price | Description |
| $0.01 | Python in Docker sandbox (no network) |
| $0.005 | Text extraction from PDFs |
| $0.005 | Image text extraction (Tesseract) |
| $0.001 | QR code PNG generation |
| $0.03 | Text-to-image (Stable Diffusion) |
Utilities ($0.001 each)
Service | Description |
| SHA-256/MD5/BLAKE2 hashing |
| Encode/decode base64 |
| UUID v1/v3/v4/v5 |
| Current time in all formats |
| Secure random data |
| JSON Schema validation |
| Infer JSON Schema from sample |
| Text comparison/diff |
| Language detection |
| Crypto/forex prices |
Full catalog
See pricing.json for all 124 services.
Discovery
Surface | URL |
AI manifest |
|
x402 discovery |
|
OpenAPI spec |
|
llms.txt |
|
Pricing |
|
Status |
|
Agent catalog |
|
Infrastructure
Component | Hardware |
Payment edge | T620 (48 cores, 377GB RAM, 24/7) |
GPU (SD + embeddings) | T620 GTX 1080 8GB |
LLM inference | T620 Ollama (24 models) |
Code execution | Docker isolated containers |
Web search | SearXNG (self-hosted, 20+ engines) |
Email relay | Postfix |
Node | Alienware RTX 3080 8GB (secondary) |
License
MIT
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/daedalusdevelopmentgroup/ddg-agent-payable-services'
If you have feedback or need assistance with the MCP directory API, please join our Discord server