🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

dead-drop-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dead-drop-mcp

Content-as-a-Service MCP Server — agent-to-agent article generation

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

@deaddrop/mcp-content

Generate complete, publish-ready articles with SEO optimization and matched images. Send a topic, get back a finished article — built for AI agents that need content.

Quick Install

Run directly via npx

npx @deaddrop/mcp-content

Add to your MCP client config

{
  "mcpServers": {
    "dead-drop-content": {
      "command": "npx",
      "args": ["-y", "@deaddrop/mcp-content"],
      "env": {
        "OLLAMA_URL": "http://localhost:11434",
        "UNSPLASH_ACCESS_KEY": "your_unsplash_key_here"
      }
    }
  }
}

This config works for Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.

Requirements

  • Ollama running locally with the qwen2.5:14b model pulled:
    ollama pull qwen2.5:14b
    ollama serve
    
  • Node.js 18+ (for npx)
  • Unsplash API key (optional) — enables image matching. Get one free at unsplash.com/developers.

Environment Variables

VariableRequiredDescription
OLLAMA_URLNoOllama API base URL. Default: http://localhost:11434
UNSPLASH_ACCESS_KEYNoUnsplash API key for image matching. Images disabled without it.

Tool Reference

generate_article

Generate a complete article on any topic.

ParameterTypeRequiredDefaultDescription
topicstringThe article topic
keywordsstring[]No[]Target SEO keywords to weave in
word_countnumberNo1500Target word count
toneenumNo"informational"informational | conversational | professional | review
include_imagesbooleanNotrueInclude matched Unsplash images
image_tierenumNo"standard"basic (stock) | standard (stock + product) | premium (AI-generated)

Output Format

The tool returns a JSON object:

{
  "title": "Article title",
  "slug": "article-slug",
  "meta_description": "SEO meta description (150-160 chars)",
  "content": "Full article body in Markdown",
  "images": [
    {
      "url": "https://images.unsplash.com/...",
      "alt": "Image alt text",
      "credit": "Photographer name on Unsplash"
    }
  ],
  "word_count": 1523,
  "generation_time_ms": 18450
}

Example Usage (Claude Desktop)

Ask your AI assistant:

"Write a 1200-word informational article about container gardening for beginners, targeting keywords: raised beds, soil mix, companion planting."

The agent calls generate_article and returns a publish-ready article with images.

License

MIT © 2026 Dead Drop

Keywords

mcp

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts