Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Lesson 1: MCP Server Setup

What Is MCP?

The Model Context Protocol (MCP) is a standardized way for AI tools to connect to external data sources and services. With MCP, AI editors like Cursor, Copilot, and others can query Sruja's architecture graph directly.

Why MCP for Sruja?

Without MCP, AI editors don't know your architecture:

  • AI suggests changes without understanding dependencies
  • AI doesn't know which components are critical
  • AI can't tell you the blast radius of a change

With MCP, AI editors can:

  • Query architecture graph in real-time
  • Understand component relationships
  • Provide architecture-aware suggestions
  • Warn about breaking changes

Setting Up Sruja MCP

1. Install Sruja CLI

# From source
cargo install --path crates/sruja-cli

# Or from release
curl -fsSL https://sruja.ai/install.sh | bash

2. Verify MCP is Available

sruja mcp --help

3. Configure for Cursor

Create or edit ~/.cursor/mcp.json (or .cursor/mcp.json in your project):

{
  "mcpServers": {
    "sruja": {
      "command": "sruja",
      "args": ["mcp", "-r", "."],
      "env": {}
    }
  }
}

4. Configure for VS Code (Copilot)

// .vscode/mcp.json in your project
{
  "sruja": {
    "command": "sruja",
    "args": ["mcp", "-r", "."]
  }
}

5. Configure for Cline/Windsurf

// .clinerules or .windsurf/rules/sruja.md
{
  "mcpServers": {
    "sruja": {
      "command": "sruja",
      "args": ["mcp", "-r", "."]
    }
  }
}

Testing the Connection

# Start MCP server in test mode
sruja mcp -r . --test

# Or start and watch logs
sruja mcp -r . --verbose

In your AI editor, try asking:

  • "What components does the API depend on?"
  • "Show me the architecture context"
  • "What would break if I change the database?"

MCP Tools Available

Once connected, the AI editor can use these Sruja tools:

ToolPurpose
sruja_queryQuery architecture graph
sruja_whyExplain why a component exists
sruja_impactAnalyze change blast radius
sruja_contextGet architecture context
sruja_lintValidate DSL

Hands-On: Set Up MCP Server

  1. Install Sruja CLI:

    # Verify installation
    sruja --version
    
    # Or install if needed
    curl -fsSL https://sruja.ai/install.sh | bash
    
  2. Test MCP server:

    # Start MCP server
    sruja mcp -r .
    
  3. Configure your AI editor: Add the configuration to your editor's MCP settings file as shown above.

  4. Verify the connection: Ask your AI editor: "What is the architecture of this project?"

Learning Outcomes

  • ✅ Understand what the Model Context Protocol (MCP) is and why it matters
  • ✅ Configure Sruja as an MCP server for AI editors
  • ✅ Connect AI editors (Cursor, VS Code, Cline, Windsurf) to Sruja
  • ✅ Verify MCP connection is working

Quiz: Test Your Understanding

Q1: What does MCP stand for in the context of AI editors?

A) Model Computing Protocol B) Model Context Protocol C) Machine Code Processing D) Managed Code Platform

Q2: Why is MCP useful for architecture-aware AI assistance?

A) It speeds up code compilation B) It provides architecture context to AI editors so they understand dependencies C) It automatically writes code D) It deploys applications

Q3: What command starts the Sruja MCP server?

A) sruja server start B) sruja mcp -r . C) sruja connect D) sruja context

Next Steps

Lesson 2 covers building and optimizing context for AI assistance.