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.
Quick Start
- Open Claude Desktop, Claude.ai, Claude Code, or Cursor.
- Add the Skills IL MCP server using the URL below.
- Your browser will open. Sign in, click Authorize, and you're done.
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- Open Claude Desktop and go to Settings → Connectors.
- Click "Add custom connector".
- Set the name to Skills IL.
- Paste the URL below into "Remote MCP server URL":
https://mcp.agentskills.co.il/mcp - 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- Open claude.ai and go to Settings → Connectors.
- Click "Add custom connector".
- Set the name to Skills IL.
- Paste the URL below into "Remote MCP server URL":
https://mcp.agentskills.co.il/mcp - 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
terminalclaude 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.
https://mcp.agentskills.co.il/mcpPricing
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
| Tool | Description |
|---|---|
search_skills | Search the catalog by query, category, agent, or tag. |
get_skill | Get full details for a skill by slug. |
list_categories | List all categories with skill counts. |
get_category_skills | List skills in a specific category. |
list_bundles | List all curated skill bundles. |
get_bundle | Get bundle details including its skills. |
try_skill | Load a skill's instructions so the assistant can act as that skill. |
get_install_command | Get the install command for a skill, formatted for the target agent. |