feat(mcp): add ponytail-mcp, an MCP server for the ruleset (#91)

* feat(mcp): add ponytail-mcp server (prompt + tool)

* test(mcp): cover mode resolution and instruction text

* Report resolved MCP mode
This commit is contained in:
Uchenna
2026-06-19 00:24:40 +02:00
committed by GitHub
parent 15749f7ffc
commit 0ac987f995
5 changed files with 155 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "ponytail-mcp",
"version": "0.1.0",
"description": "MCP server that serves Ponytail's lazy-senior-dev instructions as a prompt and a tool.",
"type": "module",
"license": "MIT",
"bin": { "ponytail-mcp": "./index.js" },
"scripts": { "test": "node --test ./test/*.test.js" },
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.0",
"zod": "^3.23.0"
}
}