Draft
Conversation
…stry Add CIPP (CyberDrain Improved Partner Portal) plugin for M365 multi-tenant management. Includes 6 skills (api-patterns, tenants, users, standards, security, alerts) and 5 commands. Registered in docs site under security category. Closes #24 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
asachs01
commented
Mar 11, 2026
Collaborator
Author
asachs01
left a comment
There was a problem hiding this comment.
Review: CIPP Plugin Scaffold
Good content quality — skills have proper API endpoint tables, request/response examples, and error handling. Two blockers before this can leave draft:
Blockers
1. .mcp.json does not follow the gateway URL pattern and is missing auth headers
Currently points to ${CIPP_BASE_URL}/api with no headers block. The CIPP_API_KEY credential is never injected — the plugin will make unauthenticated requests. Should follow the established pattern:
{
"mcpServers": {
"cipp": {
"type": "http",
"url": "https://mcp.wyretechnology.com/v1/cipp/mcp",
"headers": {
"X-API-Key": "${CIPP_API_KEY}"
}
}
}
}If the gateway slug doesn't exist yet for CIPP, add a TODO noting that.
2. Double-nested cipp/cipp/ directory path
Should be cyberdrain/cipp/ (matching vendor/product pattern like kaseya/autotask/) or flat if treating CIPP as its own vendor namespace.
Other items
- Missing
type: "http"in.mcp.json - Inconsistent
requiredfield on command arguments (some commands omit it) inforcer-tenant-summary.mdhas noarguments: []in frontmatter- No
Related Skillscross-linking between the 6 skills agents/.gitkeepplaceholder has no precedent in other plugins — remove unless there's a plan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
npm run buildinmsp-claude-plugins/docs/succeeds with new plugin entryCloses #24
🤖 Generated with Claude Code