Skills MCP
Skills MCP
Modular Model Context Protocol host. Skills are folders. Tools from every enabled skill show up on one MCP endpoint.
First skill: Project SEKAI (pjsk_*), backed by the same master JSON sekai.best loads.
Endpoints
Path | Role |
| Status page |
| MCP Streamable HTTP |
| Alias |
| Health + skill list |
Protocol: JSON-RPC 2.0, initialize → tools/list → tools/call. Stateless. CORS open.
Connect a client
Cursor / Claude / any Streamable HTTP client:
{
"mcpServers": {
"skills": {
"url": "https://YOUR-DEPLOYMENT.vercel.app/api/mcp"
}
}
}Add a skill (not related to Sekai)
Copy
skills/_templatetoskills/<id>.Export a
Skillobject (id,title,description,version,tools[]).Each tool needs
name,description, JSON SchemainputSchema, andhandler(args).Register it in
lib/registry.ts:
import { mySkill } from "@/skills/my-skill";
export const skills: Skill[] = [projectSekaiSkill, mySkill];Push to
main. Vercel rebuilds.
Keep handlers small and return JSON. The host wraps the result as MCP text content.
Project SEKAI tools
Tool | Use |
| Host inventory |
| Mixed query ( |
| ID or filters |
| Profile + rarity counts |
| Current / id / name |
| Songs |
| Banners |
| Every character |
server defaults to jp. Also en, tw, kr, cn.
Local
npm install
npm run dev
# POST http://localhost:3000/api/mcpcurl -s http://localhost:3000/api/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Deploy
GitHub → Vercel (this repo). Production URL is the MCP base. First pjsk_card call on a cold instance may take a few seconds while cards.json is fetched and slimmed; later calls hit memory + fetch cache.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rnnve/skills-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server