Developers Digest
A streamable HTTP MCP endpoint that exposes the same credit-metered capabilities as the Developers Digest REST API. Every tool call resolves its owner from the API key, so there is no separate session to manage. Beyond generation, it leans on progressive disclosure: skills and files are served as a cheap lean index first (list_skills, list_files), then a single item is fetched on demand (get_skill, get_skill_file, get_file), so an agent spends context only on what it actually opens. Linked skill files and remote sources are pulled at fetch time, not up front. Point any MCP client at the URL with a Bearer key and the tools appear.
Install
Add this block to your MCP client config.
{
"mcpServers": {
"developers-digest": {
"type": "http",
"url": "https://www.developersdigest.tech/api/mcp",
"headers": {
"Authorization": "Bearer dd_live_your_key_here"
}
}
}
}Auth
Bearer dd_live_ API key (required on every call)
Tools exposed
- generate_image (5 credits)
- generate_voice (1 credit)
- list_skills / get_skill / get_skill_file (free, progressive disclosure)
- list_files / get_file (free, progressive disclosure)
- list_assets / save_memory / search_memories (free)
- list_agents / get_agent, list_design_systems / get_design_md (free)
- count_tokens, search_content, get_daily_brief, get_balance (free)