MCP Server

Give your AI agent a document layer

AIX DocGen ships with a hosted Model Context Protocol (MCP) server. Connect Claude Desktop, Cursor, or any MCP client and your agent can create branded proposals, reports, and SOWs — with your exact colors, fonts, and page layout.

One-line install

Drop the endpoint and your API key into any MCP client config — Claude Desktop, Cursor, custom agents.

One tool, fully typed

create_document accepts a title, cover style, and sections. Your agent discovers the schema automatically.

Brand-safe by default

Every document generated through MCP uses your organization's default theme — colors, fonts, page size.

Endpoint

Streamable HTTPhttps://docgen.aixccelerate.com/api/mcp

Authenticate with a bearer API key. Supports GET, POST, and DELETE per the MCP streamable-HTTP spec.

Claude Desktop

Add the server to your claude_desktop_config.json:

json
{ "mcpServers": { "aix-docgen": { "url": "https://docgen.aixccelerate.com/api/mcp", "headers": { "Authorization": "Bearer aix_live_xxxxxxxxxxxxxxxx" } } } }

Cursor / custom agents

Any MCP client that speaks streamable HTTP works. Cursor example:

json
{ "mcpServers": { "aix-docgen": { "type": "http", "url": "https://docgen.aixccelerate.com/api/mcp", "headers": { "Authorization": "Bearer aix_live_xxxxxxxxxxxxxxxx" } } } }

Tools exposed

create_document

Creates a branded document in your organization. Generates the cover page and sections, optionally exports to PDF or DOCX, and returns an edit URL your teammates can open in the editor.

namestringrequired

Document title, shown on the cover page.

typeproposal | report | sow | other

Defaults to proposal.

cover_styleminimalist | corporate | bold

Cover layout. Defaults to minimalist.

subtitlestring

Optional subtitle under the cover title.

client_namestring

Displayed on the cover page.

prepared_bystring

Author or team.

datestring

Free-form date string shown on the cover.

sectionsSection[]

Array of heading + content blocks.

exportnone | pdf | docx | both

Optionally export immediately.

Example agent prompt

conversation
User: Draft a Q2 proposal for Acme Co — pilot of our workflow product, $40K, starts May 1. Export a PDF. Agent → calls create_document with: { "name": "Acme Co — Q2 Workflow Pilot", "cover_style": "corporate", "client_name": "Acme Co", "prepared_by": "AIX Accelerate", "sections": [ { "heading": "Overview", "content": "..." }, { "heading": "Scope", "content": "..." }, { "heading": "Investment", "content": "$40,000" } ], "export": "pdf" } Response → { edit_url, pdf_url } returned to the agent.

Plug in your agent

Sign up, grab an API key, and paste the MCP endpoint into your client. Your agent will discover the tool on the next reconnect.