remote-mcp-server-authless-gif-search
by elizabethsiegle·★ 1·Score 28
A Cloudflare-based remote MCP server for authenticating GIF searches without requiring authentication.
Overview
This repository provides a complete implementation of a remote MCP server deployed on Cloudflare Workers that allows users to search for GIFs without requiring authentication. The server exposes GIF search functionality through the MCP protocol, making it accessible to MCP clients like Claude Desktop and the Cloudflare AI Playground. The implementation demonstrates how to create a simple MCP server that can be deployed to Cloudflare's serverless platform.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this if you need a simple, authentication-free MCP server prototype or want to learn how to deploy MCP on Cloudflare Workers.
When NOT to choose this
Don't choose this for production use as it lacks authentication, or if you need a more feature-rich GIF search solution.
Tools this server exposes
1 tool extracted from the README (low confidence)search_gifReturns gifs based on input queries
Note: Tool name was inferred from the repository description and project purpose. No explicit tool documentation was provided in the README.
Comparable tools
Installation
Installation
Deploy to Cloudflare Workers
- Click the Deploy to Workers button:
[](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless) This will deploy your MCP server to a URL like: remote-mcp-server-authless.<your-account>.workers.dev/sse
Alternatively, use the CLI
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authlessConnect to Claude Desktop
Add the following to Claude Desktop configuration:
{
"mcpServers": {
"gif-search": {
"command": "npx",
"args": [
"mcp-remote",
"http://your-account.workers.dev/sse"
]
}
}
}Compare remote-mcp-server-authless-gif-search with
Last updated · Auto-generated from public README + GitHub signals.