Stats
Actions
Tags
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.
Copy this JSON into your .mcp.json to enable this server
Add 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"
}
}
}
}Review these signals before enabling this server
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
CONTEXTS_PATH=${CLAUDE_PLUGIN_ROOT}/contextsINSTINCTS_PATH=${CLAUDE_PLUGIN_ROOT}/instinctsnpx claudepluginhub elishakay/mcp-context-provider