# omgskills developer resources

> Connect agents to the live omgskills catalog, run the MCP server locally, or read the public library data directly.

## Hosted MCP

- Server URL: https://omgskills.com/mcp
- Health: https://omgskills.com/mcp/health
- Authentication: none
- Access: read-only

Available tools: `search_skills`, `get_skill`, `list_trending`, `list_gold_basket`, and `list_by_author`.

## Local MCP

```sh
npx -y omgskills-mcp
```

```json
{
  "mcpServers": {
    "omgskills": {
      "command": "npx",
      "args": ["-y", "omgskills-mcp"]
    }
  }
}
```

## Public data

- Agentic Resource Discovery catalog: https://omgskills.com/.well-known/ai-catalog.json
- Catalog manifest: https://omgskills.com/data/manifest.json
- Markdown library: https://omgskills.com/skills/index.md
- Curated Gold export: https://omgskills.com/llms-gold.txt
- Markdown convention: append `index.md` to a generated library page URL

## Safety

The MCP tools only read public catalog data. They do not install skills, write files, run shell commands, or receive private skill content.

## Links

- HTML page: https://omgskills.com/developers/
- npm: https://www.npmjs.com/package/omgskills-mcp
- Source: https://github.com/jonslimak/omgskills
