knqiufan/NebulaGraph-Skill
Claude Code skill for NebulaGraph — nGQL query generation, schema design guidance, and graph database workflow orchestration via nebulagraph-mcp-server.
Platform-specific configuration:
{
"mcpServers": {
"NebulaGraph-Skill": {
"command": "npx",
"args": [
"-y",
"NebulaGraph-Skill"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Claude Code skill that enables intelligent interaction with NebulaGraph databases through the nebulagraph-mcp-server. It provides nGQL query generation, schema design guidance, and workflow orchestration for graph database operations.
nebulagraph/
SKILL.md # Entry point — workflow decision tree, MCP tool reference, quick patterns
nGQL-reference.md # Complete nGQL syntax reference — types, DDL/DML, MATCH, GO, functions, indexes
data-modeling.md # Schema design guide — VID strategy, tags, edges, partitions, patterns
examples.md # Scenario-based examples — exploration, query composition, error diagnosisAdd to your Claude Code MCP config (~/.claude/settings.json or project .claude/settings.json):
{
"mcpServers": {
"nebulagraph": {
"command": "python",
"args": ["-m", "nebulagraph_mcp_server"],
"env": {
"NEBULA_ADDRESS": "127.0.0.1:9669",
"NEBULA_USER": "root",
"NEBULA_PASSWORD": "nebula"
}
}
}
}Copy the nebulagraph/ directory to one of these locations:
Global (available in all projects):
~/.claude/skills/nebulagraph/Project-level (available only in this project):
<project-root>/.claude/skills/nebulagraph/The skill activates when you mention:
list_spaces, `get_sLoading reviews...