Server data from the Official MCP Registry
List, share, upload, and manage Slideless HTML presentations from any MCP host.
List, share, upload, and manage Slideless HTML presentations from any MCP host.
Remote endpoints: streamable-http: https://mcp.slideless.ai/mcp
The slideless-mcp server is a well-architected OAuth 2.1 resource server that properly delegates authentication and token validation to a backend authorization server. The codebase demonstrates strong security practices: tokens are never stored or logged, all user credentials are forwarded transparently via headers, and input validation is implemented throughout. Minor code quality observations exist but do not materially affect security posture. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 1 high severity).
7 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
MCP server for Slideless. Wraps the Slideless HTTP API as Model Context Protocol tools so users can list, share, upload, and manage HTML presentations from any MCP host (Claude Desktop, claude.ai, ChatGPT desktop, Cursor, etc.) without installing the slideless CLI.
Hosted on Vercel (Next.js App Router + mcp-handler) at https://mcp.slideless.ai/mcp. Listed on the official MCP registry as ai.slideless/mcp.
Stateless Next.js route handler — streamable-HTTP transport, no session store. A per-request McpServer is built on each /mcp call and the user's Authorization header is forwarded verbatim to the Slideless Cloud Functions in europe-west1. No database, no secrets to rotate — the user's token never leaves the request.
Claude / ChatGPT → mcp.slideless.ai/mcp (Vercel / Next.js)
│
▼
europe-west1-slideless-ai.cloudfunctions.net
The server is an OAuth 2.1 resource server. It does not host the auth flow itself — it advertises app.slideless.ai as the authorization server and forwards tokens to the Cloud Functions, which validate them. Two header styles are accepted, both forwarded verbatim:
/mcp returns 401 with a WWW-Authenticate header pointing at /.well-known/oauth-protected-resource (RFC 9728), which points at app.slideless.ai. The user signs in / signs up and consents in-browser; no key is ever pasted. New API keys are minted invisibly by the authorization server.Authorization: Bearer cko_… directly.https://mcp.slideless.ai/mcp.cko_… key at https://app.slideless.ai → Settings → API Keys, and set it as the Authorization header.| Tool | What it does |
|---|---|
slideless_whoami | Identity check — returns org, key name, scopes |
slideless_list_presentations | List owned + invited presentations |
slideless_get_presentation | Full info for one presentation (tokens, collaborators) |
slideless_list_versions | Version history of a presentation |
slideless_get_version | Manifest of a specific version |
slideless_download_version | Manifest + inline text-file contents (HTML/CSS/JS up to 256 KB each) |
slideless_upload_html_presentation | Upload a single-file HTML deck |
slideless_upload_presentation_files | Upload a multi-file deck (base64 array) |
slideless_add_share_token | Mint a public viewer URL |
slideless_set_token_version_mode | Pin or unpin a token to a version |
slideless_unshare_presentation | Revoke one or all share tokens |
slideless_share_via_email | Send the share URL by email |
slideless_invite_collaborator | Grant another user dev access (sends email) |
slideless_uninvite_collaborator | Revoke a collaborator |
slideless_list_collaborators | List collaborators on a presentation |
slideless_delete_presentation | Permanently delete a presentation |
slideless_search_marketplace | Search the public marketplace for remixable presentations, apps, and plans (no key) |
slideless_get_marketplace_listing | Full detail for one marketplace listing by slug (no key) |
slideless_remix_listing | Remix a listing — returns the manifest plus inline contents of every text file (no key) |
slideless_publish_listing | Publish a pushed presentation to the marketplace (requires marketplace:publish scope) |
slideless_star_listing | Star a marketplace listing on behalf of the connected user |
slideless_unstar_listing | Remove the connected user's star from a listing |
pnpm install
pnpm dev # next dev → http://localhost:8787
Test with the MCP Inspector:
npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP
# URL: http://localhost:8787/mcp
# Header: Authorization: Bearer cko_<your-key>
Or with raw curl (initialize handshake):
curl -s http://localhost:8787/mcp -X POST \
-H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \
-H "Authorization: Bearer cko_<your-key>" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"probe","version":"0"}}}'
Type checking: pnpm typecheck.
Pushed to main → Vercel auto-deploys production (project codika/slideless-mcp). Manual deploy:
vercel deploy --prod --scope codika
Rate limiting uses @vercel/firewall. Two custom Firewall rules must exist in the project dashboard (the code references them by ID; until they exist, limiting fails open):
mcp-per-ip → 60 requests / 10smcp-per-key → 600 requests / 60sapp/
├── layout.tsx # minimal root layout
├── page.tsx # landing page (/)
├── [transport]/route.ts # MCP endpoint (/mcp); per-request client + 401 challenge
└── .well-known/oauth-protected-resource/route.ts # RFC 9728 metadata → app.slideless.ai
src/
├── config.ts # base URL, server identity (SEP-973 branding), instructions
├── http.ts # OAuth metadata, CORS, 401 challenge builders
├── rateLimit.ts # @vercel/firewall per-IP / per-key limits
├── server.ts # registerAllTools entry point
├── slidelessClient.ts # typed fetch wrapper around the Cloud Functions
├── types.ts # wire shapes (mirrors slideless-app types/)
├── errors.ts # SlidelessApiError + wrapToolErrors
└── tools/
├── identity.ts # slideless_whoami
├── presentations.ts # list / get / versions / download / delete
├── upload.ts # upload_html / upload_files (3-step orchestration)
├── sharing.ts # tokens, version mode, unshare, email
├── collaborators.ts # invite / uninvite / list
└── marketplace.ts # search / get / remix / publish / star / unstar
server.json # MCP registry metadata (ai.slideless/mcp)
slideless-app — backend Cloud Functions this server proxies (also hosts the OAuth 2.1 authorization server)slideless-cli — npm CLI that uses the same APIslideless-plugin — Claude Code plugin (companion authoring + upload skills)Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.