@pixelvault-dev/local-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@pixelvault-dev/local-mcpupload /home/user/screenshot.png"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pixelvault-dev/local-mcp
A local (stdio) MCP server for PixelVault — agent-first image hosting.
The difference from the hosted MCP server (mcp.pixelvault.dev): this one runs on
your machine, so it can upload a local file by path. It reads the bytes off
disk and streams them to the API as multipart/form-data — the file is never
base64-encoded into the model's context. That keeps large images (and slow,
token-hungry base64 round-trips) out of the conversation.
Use the hosted server when your client is remote (ChatGPT, etc.); use this one for local coding agents that have files on disk.
Install
Runs with npx — no global install needed:
npx @pixelvault-dev/local-mcpRelated MCP server: image-vision-mcp
Configure
Set your PixelVault API key (a pv_live_… secret key for private uploads):
export PIXELVAULT_API_KEY=pv_live_xxx
# optional: point at a different API
export PIXELVAULT_API_URL=https://api.pixelvault.devThe server also reads ~/.pixelvault/config.json if you've authenticated with the
PixelVault CLI (pixelvault login).
Claude Desktop / MCP client config
{
"mcpServers": {
"pixelvault": {
"command": "npx",
"args": ["-y", "@pixelvault-dev/local-mcp"],
"env": { "PIXELVAULT_API_KEY": "pv_live_xxx" }
}
}
}Tools
Tool | What it does |
| Upload by local |
| List images in your project (paginated). |
| Metadata for one image by id. |
| Permanently delete an image by id. |
| Mint a time-limited signed URL for a private image. |
| Build an on-the-fly transform URL (resize, crop, format, AI background removal, effects). |
Every returned CDN URL supports on-the-fly transforms via query params — see the transforms docs.
License
MIT
Available Tools
6 toolsdelete_imageDelete imageA
Permanently delete one PixelVault image by id (DELETE /v1/images/:id).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Image id to delete, e.g. img_abc123. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, and the description only says 'permanently delete'—lacking details on authorization, error handling, or side effects. Minimal beyond the action itself.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the action, no wasted words. Efficiently communicates the core behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete tool with one parameter and no output schema, the description covers the essential: purpose, parameter role, permanence. Lacks minor details like idempotency or error cases, but adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter description including an example. Description merely restates 'by id', adding no meaningful new information beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it permanently deletes an image by ID, distinguishes from siblings like upload, list, get, sign, and transform. Includes HTTP method and endpoint for precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied as the destructive counterpart to other image tools, but no explicit when-to-use, when-not-to-use, or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_imageGet imageA
Get metadata (CDN URL, size, MIME type, dimensions) for one PixelVault image by id (GET /v1/images/:id). The returned CDN URL supports on-the-fly transforms via query params — e.g. ?w=400&fit=cover (resize/crop), ?fmt=webp (format), ?segment=foreground (AI background removal → transparent PNG), and effects like ?blur=30&saturation=0&rotate=90. Or call transform_image to build a valid transform URL for you. See https://pixelvault.dev/docs#transforms.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Image id to fetch, e.g. img_abc123. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes that it is a GET request, implying read-only and safe behavior. Lists the specific metadata returned. Could be more explicit about error handling or rate limits, but no annotations exist to contradict.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Concise, front-loaded with purpose, includes examples and cross-reference to another tool and docs. No wasteful sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description explains all relevant return values (metadata, transforms). References alternative tool and documentation for further details. Complete for a simple get-by-id tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% coverage with parameter description. Description adds value by explaining the return structure and transforms, which relates to the parameter's output.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Explicitly states 'Get metadata (CDN URL, size, MIME type, dimensions) for one PixelVault image by id' with specific verb and resource. Distinct from siblings like list_images, upload_image, delete_image, sign_url, transform_image.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Mentions alternative tool transform_image for building transform URLs, and includes a docs link for further guidance. Does not explicitly list when to use other siblings like list_images, but provides clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_imagesList imagesA
List images in your PixelVault project, most recent first (GET /v1/images), paginated via page/per_page. The returned CDN URL supports on-the-fly transforms via query params — e.g. ?w=400&fit=cover (resize/crop), ?fmt=webp (format), ?segment=foreground (AI background removal → transparent PNG), and effects like ?blur=30&saturation=0&rotate=90. Or call transform_image to build a valid transform URL for you. See https://pixelvault.dev/docs#transforms.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1). | |
| per_page | No | Items per page (default 20, max 100). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It thoroughly discloses behavior: pagination via page/per_page, ordering, and that the returned CDN URL supports transforms. It adds significant transparency beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact (3 sentences) and front-loaded with purpose. It includes a useful link, though the sentence on transforms is lengthy. No wasted words, but slightly dense.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description adequately covers the tool's behavior (pagination, ordering, transforms). It does not detail return format, but that is typical for a list tool. The sibling tools and link provide additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description reiterates pagination defaults (default 1, 20, max 100) already in the schema, adding no new semantic meaning beyond referencing the transform capability.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List images' with the endpoint, ordering ('most recent first'), and pagination. It distinguishes from sibling tool 'transform_image' by referencing it for URL building, making the purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates when to use (listing images with pagination) and mentions transform_image as an alternative for URL transforms. However, it does not explicitly state when not to use or provide exclusions, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sign_urlSign private URLA
Mint a time-limited signed URL for a private image (POST /v1/images/:id/sign-url). The signature binds the image, so the URL can't be replayed against another; strip it and the CDN returns 403. Optional expires_in (seconds, default 3600).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Image id to mint a signed URL for, e.g. img_abc123. | |
| expires_in | No | Signature lifetime in seconds (60–2,592,000). Default 3600 (1 hour). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral burden. It discloses security-critical traits: the signature binds to the image, prevents replay, and returns 403 if stripped. It also mentions the optional expires_in and default. No contradictions or hidden behaviors.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loading the purpose and endpoint, then providing behavioral context. Every sentence adds value with no repetition or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (2 parameters, no nested objects, no output schema), the description covers the essential information: what the tool does, security behavior, and expiration. It could mention the return format (the signed URL string) but this is not critical for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description need not add much. It does mention that expires_in is optional with a default of 3600 seconds, which the schema also specifies. The description adds no new semantic insight beyond the schema, meeting the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'mint' and the resource 'time-limited signed URL for a private image', including the HTTP endpoint. This is distinct from sibling tools (upload, list, get, delete, transform), which all handle different operations on images.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case (private image, time-limited access) and explains behavioral constraints (signature binding, 403 on stripping). However, it does not explicitly state when to use this tool versus alternatives, though the purpose is sufficiently clear to differentiate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transform_imageBuild transform URLA
Build an on-the-fly transform URL for a PixelVault image (resize, crop, format/quality, AI background removal, blur/sharpen/rotate/flip, brightness/contrast/saturation, and same-project watermark tiling). Provide exactly one of url (a PixelVault CDN URL) or id (resolved via the API), plus one or more transform params. See https://pixelvault.dev/docs#transforms.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | PixelVault image id (e.g. img_abc123); its CDN URL is resolved via the API. Provide this OR url. | |
| fit | No | Resize mode. scale-down (default) never enlarges; others may upscale. Only with width/height. | |
| url | No | Absolute PixelVault CDN URL (as returned by upload_image / get_image / list_images). Provide this OR id. | |
| blur | No | Gaussian blur (0-250). | |
| flip | No | Mirror horizontally (h), vertically (v), or both (hv). | |
| size | No | Named size preset: s=256px, m=640px, l=1280px, social=1200x630 OG card. Wins over width/height. | |
| tile | No | Filename of another image in the SAME project to tile as a watermark. | |
| zoom | No | Face-crop tightness 0.0-1.0, only with gravity=face. | |
| width | No | Target width in px (1..4000). | |
| format | No | Output format. auto negotiates WebP/AVIF. | |
| height | No | Target height in px (1..4000). | |
| rotate | No | Rotate clockwise; rounded to the nearest right angle. | |
| gravity | No | Crop anchor with fit=cover|crop: face, left, right, top, bottom, auto, or 'XxY'. | |
| quality | No | Output quality. auto lets Cloudflare choose. | |
| segment | No | AI background removal: foreground keeps the subject, background becomes transparent (PNG output). | |
| sharpen | No | Sharpen strength (0-10). | |
| contrast | No | Contrast multiplier 0-2 (1=no change). | |
| background | No | Fill color behind a removed/padded background: hex, rgb(), or CSS name. | |
| brightness | No | Brightness multiplier 0-2 (1=no change). | |
| saturation | No | Saturation multiplier 0-2 (1=no change, 0=grayscale). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It mentions 'on-the-fly' and 'resolved via the API' but does not explicitly state side effects, whether the tool makes network calls, or any rate limits. The behavior is moderately clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with a brief instruction and a link. It is front-loaded with the core purpose and contains no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 20 parameters and no output schema, the description adequately lists capabilities and constraints. The return value (URL string) is implied but not explicitly stated. Overall, it is fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description adds value by grouping parameters into categories (resize, crop, etc.) and highlighting the exclusive-or relationship between url and id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool builds a transform URL for PixelVault images, listing many operations. It is distinct from sibling tools like upload_image or list_images.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a key usage constraint (provide one of url or id) but does not explicitly state when to use this tool versus alternatives, such as signing vs. transforming.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_imageUpload imageA
Upload an image to PixelVault and get an instant CDN URL. Prefer path — a LOCAL file path the server reads off disk and streams — so large files aren't base64-encoded into the model context. Alternatively pass source_url (a public https URL the API imports) or data (base64 bytes). Optional folder, filename, visibility (private → signed URL, needs a secret key), expires_in (auto-expiring image), sign_expires_in. Max 5 MB; JPG/PNG/GIF/WebP/AVIF/SVG. The returned CDN URL supports on-the-fly transforms via query params — e.g. ?w=400&fit=cover (resize/crop), ?fmt=webp (format), ?segment=foreground (AI background removal → transparent PNG), and effects like ?blur=30&saturation=0&rotate=90. Or call transform_image to build a valid transform URL for you. See https://pixelvault.dev/docs#transforms.
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Base64-encoded image bytes (data URLs accepted). Prefer `path` for local files. Provide exactly one of path, source_url, or data. | |
| path | No | Absolute or relative path to a LOCAL image file. The server reads the file off disk and streams the bytes — nothing is base64-encoded into the model context, so large files work. Provide exactly one of path, source_url, or data. | |
| folder | No | Optional folder/path prefix for the image. | |
| filename | No | Optional filename override, e.g. photo.png. | |
| expires_in | No | Optional time-to-live in seconds (60–2,592,000, i.e. 1 min to 30 days). The image is auto-deleted after this. Omit for a permanent image. | |
| source_url | No | Public https URL of an image; the PixelVault API fetches and imports it. Provide exactly one of path, source_url, or data. | |
| visibility | No | `private` returns a signed URL only link-holders can open. Defaults to public. | |
| sign_expires_in | No | For visibility=private: signed-URL lifetime in seconds (default 3600). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. Discloses file size limit (5 MB), supported formats, auto-deletion with expires_in, private visibility yielding signed URLs, and on-the-fly transforms. Could mention overwrite behavior but very transparent overall.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with main action first, then parameter alternatives and optional fields. Slightly lengthy but every sentence adds value. Could be more concise by grouping transforms, but still efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Very complete: covers all 8 parameters, return value (CDN URL with transforms), explains transforms, mentions max size and formats, references external docs. No output schema or annotations, so description compensates fully.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 100% schema coverage, description adds significant value: explains path reads local disk to avoid base64, source_url is fetched, data is base64, visibility meaning, and expires_in auto-deletion. Provides context far beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Upload an image to PixelVault and get an instant CDN URL' with specific verb and resource. Distinguishes from siblings by discussing alternative input methods and mentioning transform_image for URL transformations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on parameter preference: 'Prefer path' for large files to avoid base64 encoding. Mentions alternative tool transform_image for building transform URLs. Lacks explicit when-not-to-use but sibling names imply distinct use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v0.1.0- First observed
delete_image - First observed
get_image - First observed
list_images - First observed
sign_url - First observed
transform_image - First observed
upload_image
TDQS
Each tool has a distinct purpose: uploading, listing, retrieving metadata, deleting, signing URLs, and building transform URLs. No functional overlap.
All tool names follow a consistent verb_noun snake_case pattern (e.g., upload_image, list_images, get_image), making the set predictable.
6 tools is appropriate for an image management server—neither too few nor too many, covering essential operations without redundancy.
The server covers upload, list, get, delete, signing, and transform URL generation. Missing an update/rename tool for metadata, but the core lifecycle is well-represented.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Focused MCP server for OpenAI image/audio generation (v2.0.0). Wraps endpoints via HAPI CLI.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for Flux AI image generation
Related MCP Servers
- AlicenseAqualityDmaintenanceA simple MCP server that reads local images and returns them as ImageContent for LLM vision analysis.1MIT
- AlicenseNot gradedqualityCmaintenanceA lightweight stdio MCP server that adds image understanding to AI coding assistants via a single tool that sends images to any OpenAI-compatible multimodal endpoint.MIT
- AlicenseBqualityBmaintenanceMinimal MCP server for Kimi-compatible image analysis, allowing local images to be sent as inline base64 to any compatible endpoint.1492MIT
- FlicenseAqualityCmaintenanceStandalone MCP server and CLI for generating images via ChatGPT backend, with reliable exact file paths and multi-account login support.25-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pixelvault-dev/mcp-local'
If you have feedback or need assistance with the MCP directory API, please join our Discord server