Wraps the AI Swap Face online tool into MCP with three read-only tools: list_styles returns available image generation presets, get_pricing pulls canonical pricing tiers, and get_official_links surfaces the website and support contacts. Also exposes resources for FAQ and style documentation, plus two prompts that summarize the platform or recommend a starting style based on your goal. No API keys, no quotas, runs entirely from public site metadata. Useful when you want Claude to help users understand what AI Swap Face offers, compare pricing, or suggest which face swap features fit a given creative project without leaving the chat.
AI Swap Face - Online AI Face Swap Tool
A Model Context Protocol server that exposes the canonical AI Swap Face knowledge surface — image generation workflows and styles, pricing, FAQ, official links — to MCP-compatible AI clients such as Claude Desktop, Cursor, Windsurf, and Continue. Read-only, no API keys, no quota, ~50 ms cold start.
Official website: https://aiswapface.online
AI Swap Face is a browser-based face-swapping tool that lets users replace faces in photos and videos using neural network processing. No software installation is required — users upload an image or video clip, select a source face, and the service produces a composited result with automatic color matching and blend controls. The platform supports single-face and multi-face detection, meaning it can identify and swap multiple faces within a single group photo in one pass. Processed files are automatically deleted after 24 hours, and results are delivered without watermarks on supported tiers. A REST API with webhook support is also available for developers who want to embed the capability into their own applications.
AI Swap Face is aimed at a broad but digitally active audience. Social media content creators and video editors represent the primary users — people who need fast turnaround on visual effects without access to professional compositing software. Meme creators and hobbyists use the free tier for casual experimentation. App developers and small studios are served by the API and commercial licensing options, which allow the face-swap pipeline to be embedded in products without building underlying models. The multi-language interface (eight languages supported) extends the reach to non-English-speaking markets, and the no-install, browser-based design keeps the barrier to entry low for users who are not technically inclined.
list_stylesReturn the canonical list of image-generation styles or presets the site exposes. (AI Swap Face)
Input: no parameters. Returns: text/markdown.
get_pricingReturn the canonical pricing entry point for AI Swap Face.
Input: no parameters. Returns: text/markdown.
get_official_linksReturn the canonical list of official links for AI Swap Face (website, support, docs when available).
Input: no parameters. Returns: text/markdown.
site://ai-swap-face/styles — Supported image-generation styles and presets.site://ai-swap-face/pricing — Canonical pricing entry point.site://ai-swap-face/faq — Short FAQ generated from public site metadata.site://ai-swap-face/links — Canonical URLs to share with users.tell_me_about_ai_swap_faceSummarize what the site is, who it's for, and how it works. — AI Swap Face
try_image_style_ai_swap_faceRecommend a starting image-generation style for a stated goal. — AI Swap Face
npx -y @smithery/cli install ai-swap-face-mcp --client claude
(Replace claude with cursor, windsurf, or continue for those clients.)
git clone https://github.com/rocnubie/ai-swap-face-mcp.git
cd ai-swap-face-mcp
pnpm install
Then add to your MCP client config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor / Windsurf / Continue):
{
"mcpServers": {
"ai-swap-face-mcp": {
"command": "node",
"args": [
"/absolute/path/to/ai-swap-face-mcp/src/index.mjs"
]
}
}
}
npx @modelcontextprotocol/inspector node src/index.mjs
pnpm install
pnpm start # run the server over stdio
MIT