rustypaste-mcp-server
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., "@rustypaste-mcp-serverupload this code snippet as a single-use link"
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.
rustypaste-mcp-server
An MCP server that wraps the rustypaste API.
Tools
Tool | Description |
| Upload text content and get a shareable URL |
| Upload a local file by path |
| Upload a file with auto-deletion after a duration |
| Upload a file as a single-view link |
| Create a single-use URL redirect |
| Shorten a long URL |
| Fetch a remote URL and host it on rustypaste |
Related MCP server: @zhigang1992/uploadfile-mcp
Setup
Add the following to your MCP client configuration (e.g., ~/.config/claude/claude_desktop_config.json):
{
"mcpServers": {
"rustypaste": {
"command": "npx",
"args": [
"-y",
"@rukh-pub/rustypaste-mcp"
],
"env": {
"RUSTYPASTE_URL": "https://paste.example.com",
"RUSTYPASTE_AUTH_TOKEN": "<your-token-here>"
}
}
}
}License
MIT
Available Tools
7 toolsrustypaste_oneshot_fileOne-Shot File UploadA
Upload a file as a one-shot link — it can only be viewed/downloaded once.
After the first access, the file is automatically deleted from the server. Useful for sharing sensitive or temporary files securely.
Args:
file_path (string): Absolute path to the file (e.g. "/home/user/secret.txt")
Returns: The one-shot URL. The file will be deleted after the first download.
Examples:
Share a secret: file_path="/tmp/credentials.txt"
One-time image share: file_path="/home/user/photo.jpg"
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the file to upload as a one-shot |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant behavioral context beyond annotations: it explains the 'one-shot' mechanism ('it can only be viewed/downloaded once'), automatic deletion after first access, and security implications. Annotations provide basic hints (e.g., readOnlyHint=false, destructiveHint=false), but the description elaborates on the tool's unique ephemeral behavior, which is crucial for understanding its use case.
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 well-structured and front-loaded: the first sentence defines the core functionality, followed by key behavioral details, usage context, and structured examples. Every sentence adds value without redundancy, making it efficient and easy to parse.
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 tool's complexity (ephemeral file upload) and lack of output schema, the description provides complete context: it explains the one-shot mechanism, deletion behavior, security use case, parameter usage with examples, and return value ('The one-shot URL'). This compensates for missing structured output details and aligns well with the annotations.
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?
The description adds practical meaning beyond the schema: it clarifies the parameter's purpose ('Absolute path to the file') and provides concrete examples (e.g., '/home/user/secret.txt', '/tmp/credentials.txt'). With 100% schema description coverage, the baseline is 3, but the examples and context elevate the score by making the parameter usage more intuitive.
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 specific action ('Upload a file as a one-shot link') and resource ('file'), distinguishing it from siblings like 'rustypaste_upload_file' (standard upload) and 'rustypaste_upload_file_with_expiry' (time-based expiry). The 'one-shot' mechanism is explicitly defined, making the purpose 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 explicitly states when to use this tool ('Useful for sharing sensitive or temporary files securely') and implies alternatives through sibling tool names (e.g., 'rustypaste_upload_file_with_expiry' for time-based deletion). The 'one-shot' behavior clearly differentiates it from other upload options, providing strong contextual guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rustypaste_oneshot_urlOne-Shot URL RedirectA
Create a one-shot URL redirect — the link expires after a single visit.
Wraps a URL in a one-time redirect. After the first person clicks it, the redirect is deleted from the server.
Args:
url (string): The target URL to wrap (must be a valid URL)
Returns: The one-shot redirect URL.
Examples:
One-time link: url="https://example.com/sensitive-doc"
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to create a one-shot redirect for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it explains that the redirect is 'deleted from the server' after first use, which clarifies the 'one-shot' mechanism. Annotations already indicate this is a non-readOnly, non-destructive operation, but the description provides specific implementation details about deletion behavior.
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?
Perfectly structured with clear sections: purpose statement, behavioral explanation, Args, Returns, and Examples. Every sentence earns its place with zero waste. The information is front-loaded with the core functionality stated first.
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 single-parameter tool with good annotations and no output schema, the description provides excellent context about behavior and usage. The only minor gap is that it doesn't explicitly describe the return format beyond 'The one-shot redirect URL', but given the tool's simplicity, this is 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?
With 100% schema description coverage, the schema already fully documents the single 'url' parameter. The description adds minimal value beyond restating that it's 'The target URL to wrap (must be a valid URL)', which is essentially what the schema already says. Baseline 3 is appropriate when schema does the heavy lifting.
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 specific action ('Create a one-shot URL redirect') and resource ('URL'), distinguishing it from siblings like rustypaste_shorten_url (persistent) and rustypaste_oneshot_file (file-based). It precisely defines the one-time expiration behavior.
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?
Explicitly states when to use this tool ('Create a one-shot URL redirect — the link expires after a single visit') and distinguishes it from alternatives by describing its unique single-use behavior. The sibling tools list provides clear context for different use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rustypaste_paste_textPaste TextA
Upload text content to rustypaste and get a shareable URL.
Use this to paste code snippets, notes, logs, or any text content. The text is uploaded as a file and a URL is returned.
Args:
content (string): The text to paste (required, non-empty)
filename (string, optional): Name for the paste file (default: "paste.txt")
Returns: The URL of the created paste.
Examples:
Paste a log excerpt: content="error at line 42: null pointer"
Paste code with a name: content="def main(): ...", filename="app.py"
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The text content to paste | |
| filename | No | Optional filename for the paste (e.g. 'notes.md'). Defaults to 'paste.txt' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it explains that 'The text is uploaded as a file and a URL is returned,' clarifying the output format. Annotations already indicate it's not read-only, not idempotent, not destructive, and open-world, but the description enhances understanding of the tool's operation without contradicting annotations.
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 well-structured with clear sections (purpose, usage, args, returns, examples) and is appropriately sized. However, the 'Args' and 'Returns' sections are somewhat redundant given the schema, slightly reducing efficiency. Most sentences earn their place by providing useful context.
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 tool's moderate complexity, rich annotations, and full schema coverage, the description is mostly complete. It explains the tool's purpose, usage, and output format, though it lacks details on error handling or rate limits. Without an output schema, the description adequately covers the return value, but could be more comprehensive.
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?
With 100% schema description coverage, the input schema already fully documents the parameters. The description includes an 'Args' section that repeats this information without adding significant meaning beyond the schema, such as constraints or usage nuances. This meets the baseline for high schema coverage.
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 specific action ('Upload text content to rustypaste') and the outcome ('get a shareable URL'), distinguishing it from sibling tools that handle files, URLs, or oneshot operations. It explicitly mentions the resource ('text content') and verb ('upload'), making the purpose 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 provides clear context on when to use this tool ('Use this to paste code snippets, notes, logs, or any text content'), but it does not explicitly differentiate from sibling tools like rustypaste_upload_file or rustypaste_oneshot_file. It offers general guidance but lacks specific alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rustypaste_shorten_urlShorten URLA
Shorten a long URL using rustypaste.
Creates a short redirect URL that points to the original long URL.
Args:
url (string): The URL to shorten (must be a valid URL)
Returns: The shortened URL.
Examples:
Shorten a link: url="https://example.com/very/long/path/to/resource?with=params"
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The long URL to shorten |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a non-readOnly, non-destructive, non-idempotent, open-world operation. The description adds that it 'creates a short redirect URL,' which provides context about the output behavior, but doesn't disclose rate limits, authentication needs, or error handling beyond what annotations cover.
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 well-structured with clear sections (purpose, args, returns, examples) and front-loaded key information. It's concise but includes an example that reinforces usage, though some parts like 'Args:' and 'Returns:' could be slightly more integrated into the flow.
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 tool's low complexity (1 parameter, no output schema), the description adequately covers the purpose and usage with an example. Annotations provide behavioral context, and the schema fully documents parameters, making the description sufficiently complete for this simple 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 description coverage is 100%, with the schema fully documenting the single 'url' parameter. The description adds minimal value by restating that the URL 'must be a valid URL' and providing an example, but doesn't elaborate beyond what the schema already specifies.
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 specific action ('Shorten a long URL') and resource ('using rustypaste'), distinguishing it from sibling tools that handle files, text, or remote uploads. It explicitly mentions creating a redirect URL, which differentiates it from other URL-related tools like oneshot_url.
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 usage when needing a shortened URL, but provides no explicit guidance on when to use this tool versus alternatives like rustypaste_oneshot_url. It mentions the tool's purpose but lacks context about sibling tool distinctions or specific scenarios for preference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rustypaste_upload_fileUpload FileA
Upload a local file to rustypaste and get a shareable URL.
Reads a file from disk and uploads it to the rustypaste server. Supports any file type. The returned URL can be shared to download the file.
Args:
file_path (string): Absolute path to the file (e.g. "/home/user/doc.pdf")
Returns: The URL of the uploaded file.
Examples:
Upload an image: file_path="/home/user/screenshot.png"
Upload a document: file_path="/tmp/report.pdf"
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the file to upload |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover read/write status and idempotency, but the description adds valuable context: it discloses that the tool reads from disk (local file access) and returns a shareable URL. It doesn't contradict annotations, and provides useful behavioral details beyond the structured hints.
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 well-structured and front-loaded with the core purpose. Each sentence adds value: explaining the action, file support, and return value. The examples are relevant and concise, with no wasted words.
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 single-parameter tool with good annotations and no output schema, the description is reasonably complete. It explains what the tool does, the parameter usage, and the return value. However, it could better differentiate from sibling tools to enhance contextual understanding.
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 the schema already documents the single parameter fully. The description adds minimal value with an example ('e.g., "/home/user/doc.pdf"'), but doesn't provide additional semantics beyond what's in the schema. Baseline 3 is appropriate given high schema coverage.
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 specific action ('Upload a local file to rustypaste') and resource ('file'), distinguishing it from siblings like text pasting or URL shortening. It specifies reading from disk and uploading to server, making the purpose 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 implies usage by mentioning 'local file' and 'any file type,' but doesn't explicitly state when to use this tool versus alternatives like rustypaste_upload_file_with_expiry or rustypaste_upload_remote. No explicit exclusions or named alternatives are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rustypaste_upload_file_with_expiryUpload File with ExpiryA
Upload a local file to rustypaste with an expiration time.
The file will be available at the returned URL until the expiry time elapses, after which it is automatically deleted from the server.
Args:
file_path (string): Absolute path to the file (e.g. "/home/user/doc.pdf")
expiry (string): How long the file should be available (e.g. "10min", "1h", "1d", "1w")
Returns: The URL of the uploaded file.
Examples:
Upload for 1 hour: file_path="/tmp/log.txt", expiry="1h"
Upload for 7 days: file_path="/home/user/img.png", expiry="7d"
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the file to upload | |
| expiry | Yes | Expiry duration string (e.g. '10min', '1h', '1d', '1w'). Supported units: s/sec, min, h/hour, d/day, w/week, M/month |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it explains that the file is automatically deleted after expiry, which is a key trait not covered by annotations (which only indicate it's not read-only, not open-world, not idempotent, and not destructive). This disclosure of server-side cleanup behavior is crucial for understanding tool effects. No contradiction with annotations.
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 well-structured and front-loaded: the first sentence states the core purpose, followed by key behavioral details, then organized sections for Args, Returns, and Examples. Every sentence adds value without redundancy, making it efficient and easy to parse.
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 tool's moderate complexity (2 parameters, no output schema, annotations present), the description is largely complete: it covers purpose, usage, behavior, parameters, and examples. However, it lacks details on error handling or response format beyond the URL, which could be useful for an agent. The annotations help but don't fully compensate for missing output schema.
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?
With 100% schema description coverage, the schema already fully documents both parameters (file_path and expiry). The description adds minimal extra semantics (e.g., examples like '10min', '1h'), but doesn't provide significant new meaning beyond the schema's detailed descriptions. This meets the baseline for high schema coverage.
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 specific action ('upload a local file') with the distinctive feature ('with an expiration time'), differentiating it from sibling tools like 'rustypaste_upload_file' (which presumably lacks expiry) and 'rustypaste_oneshot_file' (which may have different behavior). It explicitly mentions the resource ('rustypaste') and outcome ('available at the returned URL').
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 explicit usage guidance by stating when to use this tool (for uploading with expiry) and implicitly when not to use it (e.g., for non-expiring uploads, use 'rustypaste_upload_file'). It distinguishes from siblings by highlighting the unique expiry feature, though it doesn't name alternatives directly, 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.
rustypaste_upload_remoteUpload from Remote URLA
Upload a file from a remote URL to rustypaste.
The rustypaste server fetches the file from the provided URL and hosts it. Useful for mirroring or re-hosting remote resources.
Args:
url (string): The remote file URL to fetch and upload (must be a valid URL)
Returns: The rustypaste URL for the uploaded file.
Examples:
Mirror an image: url="https://example.com/photo.jpg"
Re-host a file: url="https://cdn.example.com/release-v1.2.tar.gz"
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The remote file URL to upload to rustypaste |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover read/write status (readOnlyHint=false), world openness (openWorldHint=true), idempotency (idempotentHint=false), and safety (destructiveHint=false). The description adds valuable context beyond annotations: it explains that 'the rustypaste server fetches the file from the provided URL and hosts it,' clarifying the server-side behavior. However, it does not mention rate limits, auth needs, or file size limits.
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 well-structured and front-loaded: the first sentence states the purpose clearly. Additional sentences provide context, usage, and examples without waste. Each section (Args, Returns, Examples) is concise and adds value. No redundant information is present.
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 tool's moderate complexity (single parameter, no output schema), the description is mostly complete. It covers purpose, usage context, parameter, and return value. However, it lacks details on potential errors (e.g., invalid URLs, server fetch failures) or behavioral constraints (e.g., file type restrictions, size limits), which would enhance completeness for a mutation 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 description coverage is 100%, with the parameter 'url' fully documented in the schema as 'The remote file URL to upload to rustypaste.' The description adds minimal semantics beyond the schema, only restating the parameter in the Args section and providing examples. Baseline 3 is appropriate as the schema does the heavy lifting.
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 specific action: 'Upload a file from a remote URL to rustypaste.' It distinguishes this tool from siblings by specifying remote URL fetching (vs. local file upload in rustypaste_upload_file or text pasting in rustypaste_paste_text). The purpose is precise and differentiated.
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 clear context: 'Useful for mirroring or re-hosting remote resources.' It implies when to use this tool (for remote files) but does not explicitly state when not to use it or name alternatives among siblings. The examples reinforce the usage context but lack explicit exclusions.
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.
7 tool updates
v1.1.0- First observed
rustypaste_oneshot_file - First observed
rustypaste_oneshot_url - First observed
rustypaste_paste_text - First observed
rustypaste_shorten_url - First observed
rustypaste_upload_file - First observed
rustypaste_upload_file_with_expiry - First observed
rustypaste_upload_remote
TDQS
Most tools have distinct purposes with clear boundaries: oneshot_file vs oneshot_url (file vs URL), paste_text vs upload_file (text vs file), shorten_url vs others (URL shortening). However, upload_file and upload_file_with_expiry overlap significantly in core functionality, differing only in expiry, which could cause confusion about which to use for basic uploads without expiry.
All tool names follow a consistent snake_case pattern with a 'rustypaste_' prefix and descriptive verb_noun combinations (e.g., upload_file, shorten_url, paste_text). The naming is highly predictable and readable throughout the set.
With 7 tools, the server is well-scoped for a paste/file-sharing service. Each tool serves a specific use case (e.g., oneshot, text paste, file upload, URL shortening, remote upload), and none feel redundant or missing for the domain.
The toolset comprehensively covers the rustypaste domain: it supports uploading files (with and without expiry), uploading text, creating one-shot links for files and URLs, shortening URLs, and fetching remote files. There are no obvious gaps for core operations like creation, sharing, or management of temporary content.
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
A MCP server built for developers enabling Git based project management with project and personal…
A basic MCP server to operate on the Postman API.
Related MCP Servers
- AlicenseBqualityCmaintenanceA MCP server for managing and storing code snippets in various programming languages, allowing users to create, list, and delete snippets via a standardized interface.3167MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables users to upload local files to S3-compatible storage and retrieve shareable public URLs. Files are automatically organized into unique UUID-based folders to prevent naming conflicts while preserving original filenames.15MIT
- FlicenseNot gradedqualityDmaintenanceA comprehensive MCP server providing 21+ tools for mathematical operations, string manipulation, file handling, utilities, and web requests via FastAPI and WebSocket.-
- AlicenseNot gradedqualityDmaintenanceMCP server for uploading, listing, and retrieving files on S3-compatible storage (AWS S3, DigitalOcean Spaces) with public/private access and temporary URLs.15MIT
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/rukh-debug/rustypaste-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server