Server Details
Normalize and convert more than 400 file types via TweekIT's hosted MCP streamable HTTP endpoint.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- equilibrium-team/tweekit-mcp
- GitHub Stars
- 1
Available Tools
5 toolsconvertTry in Inspector
Convert an uploaded document payload with TweekIT.
The file must already be base64 encoded (see blob). The conversion can be
resized and cropped by providing optional geometry parameters. For raster
outputs, set alpha/bgColor to control transparency handling.
Args:
inext: Source file extension such as pdf, docx, or png.
outfmt: Desired output format (Fmt in the API body).
blob: Base64 encoded document payload (DocData).
apiKey: TweekIT API key (ApiKey header). Falls back to TWEEKIT_API_KEY env var.
apiSecret: TweekIT API secret (ApiSecret header). Falls back to TWEEKIT_API_SECRET env var.
noRasterize: Forwarded to TweekIT to skip rasterization when possible.
width: Optional pixel width to request in the output.
height: Optional pixel height to request in the output.
x1: Left crop coordinate in source pixels.
y1: Top crop coordinate in source pixels.
x2: Right crop coordinate in source pixels.
y2: Bottom crop coordinate in source pixels.
page: Page number to extract for multipage inputs.
alpha: Whether the output should preserve alpha transparency.
bgColor: Background color to composite behind transparent pixels.
Returns:
A FastMCP Image or File payload, or an error description.
| Name | Required | Description | Default |
|---|---|---|---|
| x1 | No | Left crop coordinate in source pixels. | |
| x2 | No | Right crop coordinate in source pixels. | |
| y1 | No | Top crop coordinate in source pixels. | |
| y2 | No | Bottom crop coordinate in source pixels. | |
| blob | Yes | Base64 encoded document payload (DocData). | |
| page | No | Page number to convert for multi-page inputs. | |
| alpha | No | Preserve alpha transparency when producing raster formats. | |
| inext | Yes | Input file extension (e.g., pdf, docx, png). | |
| width | No | Optional pixel width for the converted output. | |
| apiKey | No | TweekIT API key passed via the ApiKey header. Defaults to the TWEEKIT_API_KEY environment variable when omitted. | |
| height | No | Optional pixel height for the converted output. | |
| outfmt | Yes | Requested output format to send as Fmt. | |
| bgColor | No | Background color (hex RGB) to composite behind transparent pixels. | |
| apiSecret | No | TweekIT API secret paired with the apiKey. Defaults to the TWEEKIT_API_SECRET environment variable when omitted. | |
| noRasterize | No | Forward to TweekIT to disable rasterization when supported. |
convert_urlTry in Inspector
Download a remote file and convert it with TweekIT in one step.
This helper first fetches url, infers the input extension when possible,
and then forwards the bytes to convert. Supply fetchHeaders when the
remote resource needs authentication or custom headers.
Args:
url: Direct download URL for the source document or image.
outfmt: Desired output format (Fmt).
apiKey: TweekIT API key (ApiKey header). Falls back to TWEEKIT_API_KEY env var.
apiSecret: TweekIT API secret (ApiSecret header). Falls back to TWEEKIT_API_SECRET env var.
inext: Optional override for the source extension if it cannot be
detected from the URL or response headers.
noRasterize: Forwarded to TweekIT to skip rasterization when possible.
width: Optional pixel width to request in the output.
height: Optional pixel height to request in the output.
x1: Left crop coordinate in source pixels.
y1: Top crop coordinate in source pixels.
x2: Right crop coordinate in source pixels.
y2: Bottom crop coordinate in source pixels.
page: Page number to extract for multipage inputs.
alpha: Whether the output should preserve alpha transparency.
bgColor: Background color to composite behind transparent pixels.
fetchHeaders: Optional mapping of HTTP headers to include when fetching.
Returns:
A FastMCP Image or File payload, or an error description.
| Name | Required | Description | Default |
|---|---|---|---|
| x1 | No | Left crop coordinate in source pixels. | |
| x2 | No | Right crop coordinate in source pixels. | |
| y1 | No | Top crop coordinate in source pixels. | |
| y2 | No | Bottom crop coordinate in source pixels. | |
| url | Yes | Direct download URL for the source document or image. | |
| page | No | Page number to convert for multi-page inputs. | |
| alpha | No | Preserve alpha transparency when producing raster formats. | |
| inext | No | Override for the detected input extension (e.g., pdf). | |
| width | No | Optional pixel width for the converted output. | |
| apiKey | No | TweekIT API key passed via the ApiKey header. Defaults to the TWEEKIT_API_KEY environment variable when omitted. | |
| height | No | Optional pixel height for the converted output. | |
| outfmt | Yes | Requested output format to send as Fmt. | |
| bgColor | No | Background color (hex RGB) to composite behind transparent pixels. | |
| apiSecret | No | TweekIT API secret paired with the apiKey. Defaults to the TWEEKIT_API_SECRET environment variable when omitted. | |
| noRasterize | No | Forward to TweekIT to disable rasterization when supported. | |
| fetchHeaders | No | Optional HTTP headers to include when downloading the URL. |
doctypeTry in Inspector
Retrieve a list of supported file formats or map a file extension to its document type.
Args: apiKey (str): The API key for authentication. Falls back to TWEEKIT_API_KEY when omitted. apiSecret (str): The API secret for authentication. Falls back to TWEEKIT_API_SECRET when omitted. extension (str): The file extension to query (e.g., 'jpg', 'pdf') or leave off or use '*' to return all supported input formats.
Returns: Dict[str, Any]: A dictionary containing the supported file formats or an error message.
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | TweekIT API key passed via the ApiKey header. Defaults to the TWEEKIT_API_KEY environment variable when omitted. | |
| apiSecret | No | TweekIT API secret paired with the apiKey. Defaults to the TWEEKIT_API_SECRET environment variable when omitted. | |
| extension | No | File extension to inspect; use '*' to list all supported inputs. | * |
fetchTry in Inspector
Fetch a URL and return content.
Images return as FastMCP Image.
PDFs return as File(format="pdf").
Text/JSON return as a JSON payload with metadata and text.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | HTTP or HTTPS URL to retrieve and normalize. |
searchTry in Inspector
Simple web search using DuckDuckGo HTML endpoint.
Returns a list of {title, url, snippet} objects. Best‑effort parsing.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search keywords to send to DuckDuckGo. | |
| max_results | No | Maximum number of results to return (1-10). |
FAQ
How do I claim this server?
To claim this server, publish a /.well-known/glama.json file on your server's domain with the following structure:
The email address must match the email associated with your Glama account. Once verified, the server will appear as claimed by you.
What are the benefits of claiming a server?
- Control your server's listing on Glama, including description and metadata
- Receive usage reports showing how your server is being used
- Get monitoring and health status updates for your server
Your Connectors
Sign in to create a connector for this server.