Skip to content

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:

IntegrationUse caseLocal / Deploy
MCP ServerClaude, Cursor, and MCP-compatible toolshttps://mcp.stealthis.dev/mcp
llms.txtLLM context files, custom crawlersStatic file at docs.stealthis.dev/llms.txt
Copy & pasteManual use in any editorNo setup

Claude (MCP)

claude.ai & Claude Desktop (custom connector)

Connectors are remote — nothing to install:

  1. Copy https://mcp.stealthis.dev/mcp
  2. Open Settings → Connectors → Add custom connector
  3. 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

Terminal window
claude mcp add stealthis --transport http https://mcp.stealthis.dev/mcp

You 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:

  1. Clone the repo: git clone https://github.com/Foodhy/stealthis
  2. Start the MCP app: From the monorepo root, run bun run dev:mcp
  3. Use localhost: Point your MCP client to http://localhost:8787/mcp (or the port shown when you run bun run dev:mcp)

See the MCP Server docs for endpoint details.


Quick reference

ActionURL / Config
MCP serverhttps://mcp.stealthis.dev/mcp
llms.txthttps://docs.stealthis.dev/llms.txt
Browse libraryhttps://stealthis.dev/library
Full docshttps://docs.stealthis.dev

All resources are MIT licensed — copy and use freely.