Skip to content
Start your 14-day trial →

Grok Setup

Grok reaches Nexus-Catalyst two ways. Use whichever matches where you work — they are not exclusive.

Surface Method Recall
grok.com Custom connector (OAuth) Model calls the tools
Grok CLI / Grok Build Plugin — MCP rule plus a stop hook Model calls recall; storage is automatic

Custom connectors sit on Grok’s paid tiers, and the MCP server must be reachable on the public internet. Ours is.

  1. Go to grok.com/connectors
  2. Choose New Connector, then Custom

Grok — New Connector dialog with Custom at the top

  1. URL: https://mcp.nexus-catalyst.com
  2. Sign in with your Nexus-Catalyst account when prompted

Grok discovers the tools and they are available in your next chat.

Then add the Agent instruction set to your custom instructions, or Grok will not call recall unprompted.


Both use the same CLI surface, so the same plugin covers them.

Terminal window
npm install -g @nexus-catalyst/grok-plugin
export NC_PLUGIN_API_KEY="your-plugin-key"
nc-grok install
nc-grok status

Your Plugin API key comes from Account → API Keys. Put the export in your shell profile (~/.zshrc, ~/.bashrc) so it survives new sessions.

  • A rule telling the model to call recall_context at the start of a session
  • A stop hook that stores the exchange when a session ends — this half is automatic

So recall depends on the model following the rule, while storage does not.

Terminal window
nc-grok install # Add the NC rule and stop hook
nc-grok uninstall # Remove them, leaving other config intact
nc-grok status # Check installation state and API key

NC_PLUGIN_API_KEY is not set in the shell you are actually using. Check with echo $NC_PLUGIN_API_KEY.

Expected to a degree — recall here is a rule, not a hook, so it depends on the model. Adding the full Agent instruction set makes it markedly more reliable.


Need help? Common Issues · support@nexus-catalyst.com