How to Integrate
This guide shows how to integrate StealThis.dev resources into your AI-assisted workflow — whether you use Claude, Cursor, or similar tools, locally or in production.
Overview
StealThis.dev offers several integration paths:
| Integration | Use case | Local / Deploy |
|---|---|---|
| MCP Server | Claude, Cursor, and MCP-compatible tools | https://mcp.stealthis.dev/mcp |
| llms.txt | LLM context files, custom crawlers | Static file at docs.stealthis.dev/llms.txt |
| Copy & paste | Manual use in any editor | No setup |
Claude (MCP)
claude.ai & Claude Desktop (custom connector)
Connectors are remote — nothing to install:
- Copy
https://mcp.stealthis.dev/mcp - Open Settings → Connectors → Add custom connector
- Name it Stealthis, paste the URL, click Add (leave the OAuth fields empty)
See the MCP Server page for a screenshot walkthrough.
Alternatively, Claude Desktop also accepts JSON config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{ "mcpServers": { "stealthis": { "type": "http", "url": "https://mcp.stealthis.dev/mcp" } }}Claude Code
claude mcp add stealthis --transport http https://mcp.stealthis.dev/mcpYou can then ask:
- “List StealThis resources for scroll animations”
- “Get the React snippet for the magnetic-button resource”
Cursor
Cursor supports MCP servers. Add the StealThis server in Settings → MCP:
{ "mcpServers": { "stealthis": { "type": "http", "url": "https://mcp.stealthis.dev/mcp" } }}Save and restart Cursor. The agent can then search and fetch StealThis resources directly.
Context Protocol / llms.txt
For tools that consume context files (e.g. custom crawlers, RAG pipelines):
- URL:
https://docs.stealthis.dev/llms.txt - Format: Plain text, Markdown-like
- Content: Project overview, MCP tools, resource structure
Fetch this URL when building context for an LLM. No authentication required.
Local vs Deploy
Using the hosted MCP server (no setup)
The MCP server runs at https://mcp.stealthis.dev/mcp. Point your tool to this URL — no local install needed. Works for:
- Claude Desktop
- Cursor
- Any MCP client
Self-hosted / air-gapped
If you need to run StealThis locally or in a restricted environment:
- Clone the repo:
git clone https://github.com/Foodhy/stealthis - Start the MCP app: From the monorepo root, run
bun run dev:mcp - Use localhost: Point your MCP client to
http://localhost:8787/mcp(or the port shown when you runbun run dev:mcp)
See the MCP Server docs for endpoint details.
Quick reference
| Action | URL / Config |
|---|---|
| MCP server | https://mcp.stealthis.dev/mcp |
| llms.txt | https://docs.stealthis.dev/llms.txt |
| Browse library | https://stealthis.dev/library |
| Full docs | https://docs.stealthis.dev |
All resources are MIT licensed — copy and use freely.