INDIVIDUAL MCP TOOL
check_image_supported
Given a filename, MIME type and/or byte size, says whether PiPic will accept the image and, if not, which error an upload would return.
LIVE ENDPOINT
https://pipic.cc/mcp
Connect to this endpoint to inspect the live schema for check_image_supported and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.pipic]
url = "https://pipic.cc/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"pipic": {
"type": "http",
"url": "https://pipic.cc/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: pipic
Remote MCP URL: https://pipic.cc/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"pipic": {
"url": "https://pipic.cc/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"pipic": {
"type": "http",
"url": "https://pipic.cc/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "pipic",
"transport": "streamable-http",
"url": "https://pipic.cc/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_compression_facts— What PiPic can compress, the file-size and batch limits, and how the free/Pro monthly allowance for the CLI and HTTP API works.get_integration_guide— Step-by-step integration instructions for actually compressing images — either through the @pipic/cli command-line tool (best for whole directories) or over plain HTTP (no Node required).