From context-provider
Loads local context files from CONTEXTS_PATH and instinct files from INSTINCTS_PATH, providing them as data sources or prompt templates for Claude Code. Runs locally as a subprocess.
npx claudepluginhub doobidoo/mcp-context-provider --plugin context-providerAdd to your .mcp.json:
{
"mcpServers": {
"context-provider": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/dist/server/index.js"
],
"env": {
"CONTEXTS_PATH": "${CLAUDE_PLUGIN_ROOT}/contexts",
"INSTINCTS_PATH": "${CLAUDE_PLUGIN_ROOT}/instincts"
}
}
}
}This server has elevated permissions. Review the source code before enabling.
nodeCONTEXTS_PATH=${CLAUDE_PLUGIN_ROOT}/contextsINSTINCTS_PATH=${CLAUDE_PLUGIN_ROOT}/instincts