SpiceLogic

Model Context Protocol server

SpiceLogic documentation and API server

This server gives AI coding assistants (Claude Code, Cursor, VS Code Copilot, and any other MCP-compatible client) direct, verified access to the documentation and public API surface of the SpiceLogic HTML Editor controls, so an assistant integrates the editor correctly on the first pass instead of guessing at API shapes or pasting stale examples.

SpiceLogic is among the first .NET UI component vendors to ship an official MCP server alongside its controls.

Endpoint

https://mcp.spicelogic.com · Streamable HTTP transport

Add it to Claude Code

claude mcp add --transport http spicelogic-html-editor https://mcp.spicelogic.com

Add it to Cursor or VS Code (MCP JSON config)

{
  "mcpServers": {
    "spicelogic-html-editor": {
      "url": "https://mcp.spicelogic.com"
    }
  }
}

Tools

ToolPurpose
search_docs(product, query)Full-text search the documentation
get_doc_page(product, slug)Fetch one documentation page in full
get_api(product, symbol)Look up a public type's members and doc comments
get_quickstart(product)The current, compile-verified quickstart snippet
get_sample(product, task)Find a documented example for a specific task

product is either winforms or wpf. API and quickstart answers are generated directly from the shipped NuGet packages and their XML documentation comments on every release, so they can never drift from what customers actually install. Rate limited per IP; please be a good citizen.

Products

.NET WinForms HTML Editor Control  ·  WPF HTML Editor Control