FIG. 1 - R5 MCP setup generator
Paste sources / choose client / copy config

Generate a working Answer Engine MCP config.

Pick Claude Code, Cursor, or Codex, enter the memory library id, and copy a config that runs npx answer-engine-mcp against https://engine.answeragent.ai. The source URL field frames what you will ingest after the server connects; it does not call an API from this public page.

FIXED ENDPOINTS
Command: npx answer-engine-mcp
API: https://engine.answeragent.ai
Hosted MCP: https://engine.answeragent.ai/mcp
Key shape: ae_live_...
Fig. 2 client config / source framing
FIG. 2

Generator

The generated JSON mirrors the Claude Code and Cursor install guides: one server named answer-engine, one npx command, one scoped library, and the corrected Answer Engine host.

Client
INGEST PATH

Web sources are ingested after the MCP server connects through the same Firecrawl-backed scrape and crawl path used by the product. This generator only writes client configuration.

OUTPUT .mcp.json

Project-scoped Claude Code config. Use user scope only when you want the same memory in every repo.

{ "mcpServers": { "answer-engine": { "command": "npx", "args": [ "answer-engine-mcp" ], "env": { "ANSWER_ENGINE_API_KEY": "ae_live_your_key_here", "ANSWER_ENGINE_API_URL": "https://engine.answeragent.ai", "ANSWER_ENGINE_LIBRARY": "your-library-id" } } } }
npx answer-engine-mcp
Ask your agent to use the answer-engine MCP server after it connects.
Fig. 3 server-rendered conversion paths
FIG. 3

Install guides

Use the guides when you want the exact client-specific walkthrough, expected output, and troubleshooting checks.

Fig. 4 FAQPage schema
FIG. 4

FAQ

What does the MCP setup generator create?

It creates a valid Answer Engine MCP config JSON block and the matching npx answer-engine-mcp install command for Claude Code, Cursor, or Codex-style MCP clients.

Does the generator mint a real API key?

No. It uses an ae_live_ placeholder so the generated config is safe to copy before you create or paste a real scoped key.

Which Answer Engine host does the generator use?

The generated config always uses https://engine.answeragent.ai for the API base URL and references https://engine.answeragent.ai/mcp for hosted HTTP MCP.