DevOps MCP
MCP (Model Context Protocol) server to fetch DevOps skills from GitHub (SAP Fiori documentation templates, code standards, best practices).
Installation
Quick installation (for your colleagues)
- Install the package:
npm install -g @devops-vinci/mcp
- Click this link to auto-configure VS Code (fully pre-configured):
š¦ Install DevOps MCP - Vinci Energies
ā That's it! No further configuration needed.
Manual configuration (alternative)
npm install -g @devops-vinci/mcp
Then add this configuration to .cursor/mcp.json:
{
"mcpServers": {
"devops": {
"command": "npx",
"args": ["@devops-vinci/mcp"],
"env": {
"GITHUB_OWNER": "devops-vesi",
"GITHUB_REPO": "devops-skills"
}
}
}
}
Available tools
`list_skills`
Lists all available DevOps skills in your GitHub repository.
`fetch_skill`
Fetches the content of a specific skill from GitHub.
Usage examples
Just ask Copilot:
- "List available skills"
- "Fetch the documentation-templates skill"
- "Generate documentation for this Fiori project"
License
MIT
Tools 2
list_skillsLists all available DevOps skills in your GitHub repository.fetch_skillFetches the content of a specific skill from GitHub.Environment Variables
GITHUB_OWNERrequiredThe GitHub organization or user name owning the repository.GITHUB_REPOrequiredThe name of the GitHub repository containing the skills.