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.
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:
Every request must carry an X-API-Key header. Sign in to create one.
https://go-mcp-server-latest.onrender.com/skills/mcpDrop this into your client’s config and swap in the key you mint on the Keys page:
{
"mcpServers": {
"skills": {
"type": "http",
"url": "https://go-mcp-server-latest.onrender.com/skills/mcp",
"headers": {
"X-API-Key": "<your-api-key>"
}
}
}
}Every request carries your X-API-Key header — mint one on the Keys page. That single key admits the whole server.
Tools
skills_findtoolTHE 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_downloadtoolDownload 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'.