Skip to content
MCPFree during beta

MCP Server Documentation

Connect your IDE to the Skills IL catalog via the Model Context Protocol.

Overview

The Skills IL MCP server lets you search, browse, and try 170+ Israeli AI skills directly from Claude Desktop, Claude Code, Cursor, ChatGPT, and any MCP-compatible client. One URL, full catalog access. Modern clients connect via OAuth, no tokens to paste.

170+
Israeli skills
12
Categories

Quick Start

  1. Open Claude Desktop, Claude.ai, Claude Code, or Cursor.
  2. Add the Skills IL MCP server using the URL below.
  3. Your browser will open. Sign in, click Authorize, and you're done.
You need an active Skills IL account to use the server. Don't have one? Sign up in one click with GitHub or Google.
Manage Connected Apps

Client Setup

Paste the MCP URL into your client. The browser opens automatically for the OAuth handshake. Sign in with GitHub or Google, click Authorize, and the connection completes.

Claude Desktop

Via Settings → Connectors
  1. Open Claude Desktop and go to Settings → Connectors.
  2. Click "Add custom connector".
  3. Set the name to Skills IL.
  4. Paste the URL below into "Remote MCP server URL":
    https://mcp.agentskills.co.il/mcp
  5. Click Add. The browser opens for the OAuth flow. Sign in and authorize, and Skills IL tools appear in your next chat.

Claude (claude.ai)

Via Settings → Connectors
  1. Open claude.ai and go to Settings → Connectors.
  2. Click "Add custom connector".
  3. Set the name to Skills IL.
  4. Paste the URL below into "Remote MCP server URL":
    https://mcp.agentskills.co.il/mcp
  5. Click Add. The browser opens for the OAuth flow. Sign in and authorize, and Skills IL tools appear in your next chat.

Cursor

~/.cursor/mcp.json
{
  "mcpServers": {
    "skills-il": {
      "url": "https://mcp.agentskills.co.il/mcp"
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "skills-il": {
      "serverUrl": "https://mcp.agentskills.co.il/mcp"
    }
  }
}

Claude Code

terminal
claude mcp add skills-il --transport http "https://mcp.agentskills.co.il/mcp"

Gemini CLI

~/.gemini/settings.json
{
  "mcpServers": {
    "skills-il": {
      "url": "https://mcp.agentskills.co.il/mcp",
      "oauth": {
        "enabled": true
      }
    }
  }
}

Authentication

Skills IL uses OAuth 2.1 with PKCE. Modern MCP clients handle the entire flow automatically: they discover the auth server via /.well-known metadata, register dynamically, open the browser for sign-in, and store the resulting access token internally. You never see or copy a token.

Server URL
https://mcp.agentskills.co.il/mcp

Pricing

The MCP server is free to use during the beta period.

We plan to introduce paid plans for heavier usage in the future. Existing free-tier limits will stay free, and we'll give plenty of notice before anything changes.

Available Tools

ToolDescription
search_skillsSearch the catalog by query, category, agent, or tag.
get_skillGet full details for a skill by slug.
list_categoriesList all categories with skill counts.
get_category_skillsList skills in a specific category.
list_bundlesList all curated skill bundles.
get_bundleGet bundle details including its skills.
try_skillLoad a skill's instructions so the assistant can act as that skill.
get_install_commandGet the install command for a skill, formatted for the target agent.