> REST API patterns for cl-n8n-mcp.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry-data --skill api-conventions --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Api Conventions?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-api-conventions-claude-skill-registry-data)More formats (shields.io, HTML) on the badges page.
---
name: api-conventions
description: '> REST API patterns for cl-n8n-mcp.'
---
# API Conventions Skill
> REST API patterns for cl-n8n-mcp.
---
## Endpoints
| Method | Path | Auth | Description |
|--------|------|------|-------------|
| GET | `/` | No | Server info |
| GET | `/health` | No | Health check |
| GET | `/stats` | API Key | Usage stats |
| POST | `/mcp` | Yes | MCP endpoint |
| DELETE | `/mcp` | Yes | Terminate session |
## Authentication
### Multi-Tenant Headers
```
x-n8n-url: https://n8n.example.com
x-n8n-key: n8n_api_key_here
```
### SaaS API Key (wrapper)
```
Authorization: Bearer n2f_xxxxxxxxxxxxx
```
## Response Format
### Success
```json
{
"success": true,
"data": { ... }
}
```
### Error
```json
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded"
}
}
```
## Rate Limit Headers
```
X-RateLimit-Limit: 50
X-RateLimit-Remaining: 45
X-RateLimit-Reset: 1704067200
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!