Docs

Search docs

Search pages and tools

MCP Server

Skills server

Locate and pull Agent Skills live from GitHub.

Find and download Agent Skills live from GitHub. Nothing is cached; every call reflects live GitHub.

How it helps

Need a capability the agent lacks, like editing a PDF form or scaffolding a route? Call skills_find with the requirement in plain language, get the matching SKILL.md back with its source links, then skills_download to pull the whole skill folder from GitHub and use it.

Connect

Point your MCP client at the skills route:

You need an API key to connect

Every request must carry an X-API-Key header. Sign in to create one.

Sign in to get your key
Skills
https://go-mcp-server-latest.onrender.com/skills/mcp

Drop this into your client’s config and swap in the key you mint on the Keys page:

mcp.json
{
  "mcpServers": {
    "skills": {
      "type": "http",
      "url": "https://go-mcp-server-latest.onrender.com/skills/mcp",
      "headers": {
        "X-API-Key": "<your-api-key>"
      }
    }
  }
}
What you provide

Every request carries your X-API-Key header — mint one on the Keys page. That single key admits the whole server.

Tools

skills_findtool

THE tool for obtaining Agent Skills. Runs a live OpenAI + web agent that finds the most relevant SKILL.md on GitHub and returns its complete, ready-to-use content plus source links. Pass multiple needs to resolve them in parallel.

requirement
stringA single need, in natural language, e.g. 'edit a PDF form'.
requirements
string[]Several needs at once; each is searched in parallel.
skills_downloadtool

Download a COMPLETE Agent Skill from GitHub: every file in the skill folder (SKILL.md plus scripts and reference files, recursively), fetched concurrently. Use after skills_find to install a skill you located.

sourcerequired
stringGitHub URL (repo/tree/blob/raw) or 'owner/repo/path'.