Connect your IDE to the Skills IL catalog via the Model Context Protocol.
The Skills IL MCP server lets you search, browse, and try 160+ Israeli AI skills directly from Claude Desktop, Cursor, Windsurf, Claude Code, and ChatGPT. One token, one URL, full catalog access.
Replace YOUR_MCP_TOKEN with the token you generated on the keys page.
claude_desktop_config.json{
"mcpServers": {
"skills-il": {
"url": "https://mcp.agentskills.co.il\n/mcp?token=YOUR_MCP_TOKEN"
}
}
}~/.cursor/mcp.json{
"mcpServers": {
"skills-il": {
"url": "https://mcp.agentskills.co.il\n/mcp?token=YOUR_MCP_TOKEN"
}
}
}~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"skills-il": {
"serverUrl": "https://mcp.agentskills.co.il\n/mcp?token=YOUR_MCP_TOKEN"
}
}
}terminalclaude mcp add skills-il --transport http "https://mcp.agentskills.co.il
/mcp?token=YOUR_MCP_TOKEN"Every MCP request must include your token. There are two ways to send it:
https://mcp.agentskills.co.il
/mcp?token=mcp_YOUR_TOKEN2. In the Authorization header
curl -X POST https://mcp.agentskills.co.il
/mcp \
-H "Authorization: Bearer mcp_YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'| 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. |