API + MCP

API + MCP Integration

Integrate Elysia Tools into workflows, scripts, or AI agents via HTTP API and MCP server.

Quick Start

  1. Use /api/search to discover tools, then call /api/tools/{toolId}.
  2. Use MCP for AI agents and HTTP API for product integration.
  3. Supports URL file links or Base64 encoding for file parameters.

HTTP API

REST

List tools, categories, and search results, then call tools via API.

GET /en/api/tools

List tools with pagination

GET /en/api/search

Search tools by keyword

POST /en/api/tools/{toolId}

Execute a tool and get the result

GET /en/api/tools?page=1&limit=12
GET /en/api/search?q=pdf
POST /en/api/tools/{toolId}

MCP Documentation

MCP

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-tools": {
      "name": "elysia-tools",
      "description": "Elysia Tools MCP Server",
      "baseUrl": "https://elysiatools.com/mcp/sse",
      "type": "sse"
    }
  }
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Integration Tips

Use Cases

Data cleaning, image processing, batch formatting, AI workflows

Best Practices

If you encounter any issues, please contact us at [email protected]