CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
vbalagovic avatar

Neural Draft

vbalagovic/neuraldraft-mcp
authSTDIOregistry active
Summary

Connects Claude and other MCP clients to the Neural Draft backend platform, exposing 38 tools across CMS, blog generation, image and video creation, bookable services, products, and multi-language content. You get read/write access to brand context, translation keys, and page registration, plus async job polling for AI-generated blog posts and media. Useful if you're building sites with AI codegen tools like Cursor or v0 and want the AI to wire up real business features (scheduling, e-commerce, newsletters, contact forms) without manual backend integration. Includes slash commands to scaffold marketing sites or migrate existing static sites into the Neural Draft admin. Requires a project API key from neuraldraft.io.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

@neuraldraft/mcp

Make AI-built sites real businesses. Plug Neural Draft's CMS, blog, social, booking, and commerce APIs into Claude Code, Cursor, Continue, and any other MCP client.

npm version npm downloads License: MIT MCP Registry

What it does

@neuraldraft/mcp is a Model Context Protocol server that gives AI coding tools first-class access to the Neural Draft backend platform. When your AI assistant builds a site, it can:

  • read your project's brand context (voice, colors, fonts, audience)
  • register every section it generates as an editable component in your admin
  • create translation keys, kick off blog/image generation, list products, set up booking widgets
  • emit markup that's CMS-managed by default — no manual wiring

Demo

A real Claude Code session driving Neural Draft via MCP. One natural-language prompt creates 4 translation keys (EN + HR) and registers a hero image.

MCP demo

Watch the full MP4 →

Why it exists

AI codegen tools (Lovable, Claude Code, v0, Bolt, Cursor) are excellent at building frontends. They're terrible at the bits that make a frontend a real business — multi-language CMS, blog pipelines, social scheduling, bookings, e-commerce. Neural Draft is the backend that handles those. This MCP server is the wire between the two: the AI tool generates code that uses Neural Draft correctly by default, because the conventions and tools are exposed as MCP context.

The pitch: "Build your site with Lovable. Run the actual business on Neural Draft."

Quick install

You need a Neural Draft project API key. Get one at neuraldraft.io/dashboard/api-keys. Test-mode keys (ndsk_test_…) work out of the box.

Claude Code

~/.config/claude-code/mcp.json:

{
  "mcpServers": {
    "neuraldraft": {
      "command": "npx",
      "args": ["-y", "@neuraldraft/mcp"],
      "env": {
        "NEURALDRAFT_API_KEY": "ndsk_live_xxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Or use the CLI:

claude mcp add neuraldraft \
  -e NEURALDRAFT_API_KEY=ndsk_live_xxx \
  -- npx -y @neuraldraft/mcp

Cursor

.cursor/mcp.json (workspace) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "neuraldraft": {
      "command": "npx",
      "args": ["-y", "@neuraldraft/mcp"],
      "env": {
        "NEURALDRAFT_API_KEY": "ndsk_live_xxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Continue

~/.continue/config.yaml:

experimental:
  modelContextProtocolServers:
    - transport:
        type: stdio
        command: npx
        args: ["-y", "@neuraldraft/mcp"]
      env:
        NEURALDRAFT_API_KEY: ndsk_live_xxxxxxxxxxxxxxxxxxxxxxxx

Then restart your editor. You should see neuraldraft listed under MCP servers, with resources, tools, and prompts available.

Auth setup

The server reads two environment variables (set by your MCP client config — never commit them):

VariableRequiredDefaultNotes
NEURALDRAFT_API_KEYyes—Project API key. Format: ndsk_live_… or ndsk_test_…
NEURALDRAFT_API_URLnohttps://api.neuraldraft.io/v1Override the API base. Useful for staging or local dev.
NEURALDRAFT_PROJECT_IDno(derived from key)Override when one key spans multiple projects.
NEURALDRAFT_DISPLAY_NAMEno—Friendly name shown in your IDE's MCP list when you run multiple projects.

NEURAL_DRAFT_* (with underscore) is also accepted as an alias for any of the above.

What it exposes

Resources (read-only context)

URIWhat
brand://currentProject brand: voice, audience, content tone, colors, fonts, logo, target topics
schema://blog-postJSON schema for blog post API responses
schema://productJSON schema for product API responses
schema://bookingJSON schema for bookable services + bookings
conventions://editable-htmlThe data-translate / data-image-key markup spec the AI should follow
conventions://api-usageAuth, errors, rate limits, idempotency, async/job patterns

Tools (functions the AI can call)

ToolDescription
get_brandRead the project's brand context (industry, audience, voice, colors, fonts)
update_brandPatch brand fields (voice, audience, colors, fonts, languages)
register_componentRegister generated HTML as editable in the admin. Call once per section.
generate_blog_postKick off the AI blog pipeline (research → draft → image → SEO → translations)
get_blog_postFetch a single blog post by id or slug (locale-aware)
list_blog_postsPaginated list with status / language / category / tag filters
update_blog_postPatch a post's title / body / SEO meta / status
generate_imageBrand-consistent image generation (returns a Job)
list_imagesList registered image keys
get_imageResolve a single registered image URL by key
register_imageBind a direct image URL to a stable key (no AI)
replace_imageSwap an image by URL or AI regeneration
delete_imageRemove an image-key registration
generate_videoBrand-aware video clip — budget (40 cr) or premium (300 cr) tier
create_pageCreate a TenantPage with per-page SEO meta
list_pagesPaginated list of pages
get_pageFetch a page by id or slug (full SEO meta)
update_pagePatch page fields and / or SEO meta (merge semantics)
create_translation_keysBulk-create translation keys with default values
get_contentRead a single translation key (resolved value + all_locales)
list_contentPaginated key list with search / scope / language filters
list_productsList the project's products (paginated)
get_productFetch a single product by id or slug
create_bookable_serviceCreate a bookable service (time-slot or date-range)
setup_booking_widgetGet the embeddable booking widget HTML for a service
list_newsletter_subscribersList captured newsletter subscribers
list_contact_form_submissionsList captured contact-form submissions
get_usageCurrent credit balance, monthly limit, reset date, breakdown
get_jobPoll an async job (blog/image/video generation) for completion
find_workspacesList Neural Draft workspaces an email is registered against (calls the central host, not the per-tenant API)

Prompts (slash commands)

Slash commandWhat it does
/scaffold-marketing-siteGenerate a complete marketing site (hero, features, testimonials, pricing, CTA, footer) wired through Neural Draft
/scaffold-blog-pageDrop a /blog and /blog/[slug] page into an existing project
/connect-existing-siteWalk a developer through migrating an existing static site to Neural Draft

Examples

1. "Build me a blog page"

You: /scaffold-blog-page framework=next language=en

Claude: Reading brand://current… (voice: warm and grounded; audience: yoga-curious adults)
Claude: Reading schema://blog-post… (got it — id, slug, title, content, featured_image, tags, …)
Claude: Reading conventions://api-usage… (auth via Bearer ndsk_…, rate limit 60/min, RFC 7807 errors)

Claude: Generating /lib/neuraldraft.ts…
Claude: Generating /app/blog/page.tsx (index)…
Claude: Calling register_component { intent: 'blog_index_card', html: ... }
Claude: → cmp_2NgB7hKqL (edit at https://app.neuraldraft.io/c/cmp_2NgB7hKqL)

Claude: Generating /app/blog/[slug]/page.tsx…
Claude: Calling register_component { intent: 'blog_post_meta_block', html: ... }
Claude: → cmp_2NgC9qPLq (edit at https://app.neuraldraft.io/c/cmp_2NgC9qPLq)

Claude: Done. 2 components registered. Open the editor URLs to change copy.

2. "Add a hero with my brand colors"

You: Build a hero section that says "Find your calm" with a CTA to /book.

Claude: Reading brand://current… (deep sage #3F6B5C primary, linen #E8DCC4 secondary, Fraunces / Inter)
Claude: Reading conventions://editable-html… (every text node needs data-translate)

Claude: Calling generate_image { prompt: "Serene yoga studio at dawn, sage and linen tones, no people", aspect_ratio: "16:9", key: "hero.background" }
Claude: → job_img_7K9L (poll with get_job)

Claude: Drafting <section class="hero">…</section> with data-translate="hero.headline" / "hero.subhead" / "hero.cta"
Claude: Calling register_component { intent: "marketing_hero", page_slug: "home", html: ... }
Claude: → cmp_2NgD9KqL — translation keys created: hero.headline, hero.subhead, hero.cta.

Claude: I'll poll the image job…
Claude: Calling get_job { id: "job_img_7K9L" } → status: completed, url: https://cdn.neuraldraft.io/.../hero-bg.jpg

Claude: Done. The hero is in your admin (https://app.neuraldraft.io/c/cmp_2NgD9KqL) — you can change the headline, swap the image, or recolor without touching code.

3. "Set up a storefront for the products I already have"

You: I have 14 products in my Neural Draft project. Scaffold a /shop page.

Claude: Calling list_products { page_size: 20 } → 14 products returned (page 1/1).
Claude: Reading schema://product… (id, name, price_cents, currency, status, images, …)
Claude: Reading brand://current… (warm voice; primary #3F6B5C)
Claude: Reading conventions://editable-html…

Claude: Generating /app/shop/page.tsx with a grid of 14 ProductCard components.
Claude: Calling register_component { intent: "product_grid_header", page_slug: "shop", html: ... } → cmp_2NgE
Claude: Generating /app/shop/[slug]/page.tsx with get_product fetch + buy-button widget.
Claude: Calling register_component { intent: "product_detail_layout", page_slug: "shop_detail", html: ... } → cmp_2NgF

Claude: Done. The grid auto-renders your 14 products (real names, prices, images). Edit the page header in admin: https://app.neuraldraft.io/c/cmp_2NgE.

Local development

git clone https://github.com/vbalagovic/neuraldraft-mcp.git
cd mcp
npm install
npm run lint    # tsc --noEmit
npm test
npm run build   # → dist/

Run against a local API:

NEURALDRAFT_API_KEY=ndsk_test_xxx \
NEURALDRAFT_API_URL=http://localhost:8080/v1 \
npm run dev

Inspect interactively with the official MCP Inspector:

npx @modelcontextprotocol/inspector node dist/index.js

(Or npx @modelcontextprotocol/inspector --cli node dist/index.js --tool register_component --args '{"html":"<h1>Hi</h1>","intent":"hero"}' for one-shot CLI calls.)

Architecture

This server is a thin wrapper over the Neural Draft Project API v1. Every tool maps to one (or a handful of) REST calls; resources are either constants (schemas, conventions docs) or cached reads (brand://current). The full API spec lives at openapi.yaml in the platform repo.

Stdio is the only transport in v0.x — every current AI coding tool spawns local processes. Streamable HTTP transport will arrive when there's hosted multi-tenant demand.

Contributing

Issues and PRs welcome. See open issues for places to start. PRs should:

  • Keep tests at ≥ 80% line coverage on src/
  • Use the existing register* helper pattern when adding tools/resources
  • Never write to stdout in server runtime code (stdio mode breaks)
  • Update the README's "What it exposes" table for any new surface

Changelog

See CHANGELOG.md (TBD — this is the first public release).

License

MIT — open-source from day one.


Built by Neural Draft. Questions? developers@neuraldraft.io.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

NEURALDRAFT_API_KEY*secret

Project API key from your Neural Draft dashboard. Format: ndsk_live_… (production) or ndsk_test_… (test mode). Get one at https://neuraldraft.io/dashboard/api-keys.

NEURALDRAFT_API_URL

Override the API base URL. Defaults to https://api.neuraldraft.io/v1. Useful for staging or local dev.

NEURALDRAFT_PROJECT_ID

Optional project override when one API key spans multiple projects.

NEURALDRAFT_DISPLAY_NAME

Optional friendly server name shown in your IDE's MCP list (useful when you run multiple Neural Draft projects in parallel).

Categories
Finance & Commerce
Registryactive
Package@neuraldraft/mcp
TransportSTDIO
AuthRequired
UpdatedMay 12, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
vdineshk avatar
dominion-observatory

vdineshk/dominion-observatory-27f5eea7

Behavioral trust scoring and MCP gateway proxy for 14,820+ MCP servers. Query real attestation data — interaction history, success rates, latency, uptime — before your agent executes sensitive operations. **8 tools** for trust evaluation, server discovery, and health monitoring: - `get-trust-score` — instant trust score (0-100) for any MCP server - `query-server` — full behavioral profile with attestation evidence - `list-servers` — browse the entire 14,820+ server directory - `get-leaderboard` — top-ranked servers by trust score - `check-health` — real-time uptime and latency checks - `get-compliance-report` — MiCA Article 12 compliance attestation receipts - `report-outcome` — report tool call outcomes to improve trust data - `get-baselines` — historical behavioral baselines **MCP Gateway Proxy**: Route agent calls through Observatory for automatic trust verification and compliance attestation. Every proxied call gets a trust check + signed attestation receipt. **Use cases**: Agent-to-agent commerce trust verification, MiCA Article 12 compliance (EU enforcement July 1, 2026), pre-flight trust checks before sensitive operations, continuous behavioral monitoring. Published spec: CTEF v0.3.2 (Zenodo DOI: 10.5281/zenodo.20285663)
verbart avatar
Tradernet Mcp

verbart/tradernet-mcp

MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, and more
verbart avatar
Tradernet Mcp Server

verbart/tradernet-mcp-server

MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, and more
vibeads avatar
Mcp

vibeads/mcp

Talk to your Google Ads from Claude. 5 read-only tools for local service businesses.
vrllrv avatar
Junto Mcp

vrllrv/junto-mcp

The payment protocol for people and agents. One MCP server, any payment rail.
walkojas-boop avatar
Ghostdom

walkojas-boop/ghostdom

Headless-browser-as-JSON with memorymarket cache economics. Real Chromium, crypto settlement.