Tryink

by rambo586

142 downloads
Not rated
GitHub

Description

# TryInk MCP Server > Virtual tattoo placement preview — as an MCP tool for AI agents. Browse 180+ tattoo designs and render them onto any body photo using the [TryInk](https://tryink.me) public API. No API key required. ## Tools | Tool | Description | |------|-------------| |…

About

# TryInk MCP Server > Virtual tattoo placement preview — as an MCP tool for AI agents. Browse 180+ tattoo designs and render them onto any body photo using the [TryInk](https://tryink.me) public API. No API key required. ## Tools | Tool | Description | |------|-------------| | `list_tattoo_designs` | Browse the…

Details

Author
rambo586
Downloads
142
Categories
Other

- Browse 180+ tattoo designs filtered by style or body part.
- Render a design onto any body photo and get a preview image URL.
- No API key required for public use.
- Integrates with AI assistants via MCP protocol.
- Simple Python script and environment variable configuration.
- Wraps the TryInk public REST API.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Tryink
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install dependencies (mcp and httpx), then run the Python script mcp_server.py. Configure the environment variable TRYINK_API_BASE (defaults to https://tryink.me). For Claude Desktop, add the server configuration to ~/.claude/claude_desktop_config.json. Use the two tools: list_tattoo_designs to browse the gallery filtered by style or body part, and render_tattoo_preview to composite a design onto a given body photo URL.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "tryink": {
            "tryink-mcp": {
                "command": "python",
                "args": [
                    "mcp_server.py"
                ]
            }
        }
    }
}

McpServers

{
    "tryink-mcp": {
        "command": "python",
        "args": [
            "mcp_server.py"
        ]
    }
}

TryInk MCP Server

> Virtual tattoo placement preview — as an MCP tool for AI agents.

Browse 180+ tattoo designs and render them onto any body photo using the TryInk public API. No API key required.

Tools

| Tool | Description |
|------|-------------|
| list_tattoo_designs | Browse the gallery filtered by style or body part |
| render_tattoo_preview | Composite a design onto a body photo URL, returns a preview image URL |

Quick start

pip install mcp httpx
python mcp_server.py

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "tryink": {
      "command": "python",
      "args": ["/path/to/mcp_server.py"],
      "env": { "TRYINK_API_BASE": "https://tryink.me" }
    }
  }
}

Example usage

Once connected, ask Claude:

> "Show me fine line wrist tattoo designs from TryInk"

> "Render the Fine Line Rose tattoo on this photo: https://example.com/arm.jpg"

API reference

The MCP server wraps the TryInk public REST API:

- GET https://tryink.me/api/v1/public/gallery — list designs
- POST https://tryink.me/api/v1/public/render — render preview

Full docs: tryink.me/api-docs

Environment

| Variable | Default | Description |
|----------|---------|-------------|
| TRYINK_API_BASE | https://tryink.me | API base URL |

License

MIT

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.