Skip to content

Introduction

Nella is a codebase intelligence layer for AI coding agents — an MCP server that grounds your agent in real code, tracks context across sessions, and defends ag

Nella is a codebase intelligence layer for AI coding agents — an MCP server that grounds your agent in real code, tracks context across sessions, and defends against prompt injection. Install it, connect your IDE, and your agent gets smarter immediately.

Get Started

  1. Install Nella

    npm install -g @getnella/mcp
  2. Connect your client

    nella connect --client claude

    Also supports: --client cursor, --client vscode, --client windsurf, --client claude-code

  3. Verify

    Ask your agent: “What Nella tools are available?”

    If all 7 tools appear, you’re ready.

What Your Agent Gets

ToolPurpose
nella_indexIndex your codebase for search
nella_searchSearch across indexed files
nella_get_contextReview session state and changes
nella_add_assumptionRecord a codebase assumption
nella_check_assumptionsVerify assumptions still hold
nella_check_dependenciesDetect dependency changes
nella_heartbeatSession verification

Example

You: Add pagination to the users API

Agent: I'll search for the existing users endpoint first.
[Calls nella_search → finds users.controller.ts and users.service.ts]
[Records assumption about current pagination approach]
[Implements changes]
[Calls nella_check_assumptions → all valid]
Done. Pagination added with offset/limit support.

No manual steps. The agent calls Nella automatically during the conversation.

Next Steps