Skip to main content
Glama
vinhgiga

obox-mcp

by vinhgiga

Cover Image

Click the image to watch the video tutorial.

πŸš€ Obox MCP: Project Setup & Integration

English | TiαΊΏng Việt

This guide explains how to install and integrate Obox MCP into your coding environment.

Obox MCP is a comprehensive development toolkit designed to supercharge your IDE. It provides:

  • Project Automation: Manage dependencies and run tasks with just.

  • Language Tools: Manage Node.js, Python, and .NET environments.

  • File System: Advanced file search and navigation with fd and ripgrep.

  • System Utilities: Cross-platform installers and shell integration.


πŸ†š Why Obox MCP?

❌ Without Obox MCP

LLMs are isolated execution environments. They cannot see your system or run code. You get:

  • ❌ Manual Execution: The AI code suggests commands, but you have to switch to the terminal to run them.

  • ❌ Blind Guessing: The AI hallucinates file paths or project structures it can't see.

  • ❌ Outdated Context: You have to manually copy-paste file contents for the AI to understand your project.

βœ… With Obox MCP

Obox MCP gives your AI agent hands and eyes. It can autonomously run commands, manage files, and navigate your project without you lifting a finger.

Add use obox to your prompt:

"Find all Python files containing 'TODO' and list their locations."

"Initialize a new FastAPI project, install dependencies, and run the server."

Obox MCP fetches real-time project info, executes complex build tasks, and manages your environment directly. No tab-switching, no manual copy-pasting, just results.


Related MCP server: Nexus-MCP

πŸ›  Prerequisites

Obox MCP is optimized to run using Astral uv. Ensure you have uv installed on your system:

# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -c "Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force"
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

πŸ”Œ Client Configuration

Cursor MCP docs

Cursor Configuration

  1. Go to: Settings -> Cursor Settings -> General -> MCP -> Add new global MCP server.

  2. Paste the following configuration into your Cursor ~/.cursor/mcp.json file.

{
  "mcpServers": {
    "obox": {
      "command": "uv",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/obox",
        "/absolute/path/to/obox/main.py"
      ]
    }
  }
}

VS Code MCP docs

VS Code Configuration

  1. Open Command Palette (Ctrl+Shift+P / Cmd+Shift+P).

  2. Type: MCP: Open User Configuration.

  3. Paste the content into the file.

{
  "servers": {
    "obox": {
      "type": "stdio",
      "command": "uv",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/obox",
        "/absolute/path/to/obox/main.py"
      ]
    }
  }
}

Claude Code MCP docs

CLI Command

Run the following command in your terminal to add the MCP server:

claude mcp add obox -- uv run --project /absolute/path/to/obox /absolute/path/to/obox/main.py

Manual Configuration (Claude Desktop)

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "obox": {
      "command": "uv",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/obox",
        "/absolute/path/to/obox/main.py"
      ]
    }
  }
}

Antigravity MCP docs

Antigravity Configuration

  1. Open Command Palette (Ctrl+Shift+P / Cmd+Shift+P).

  2. Type: Antigravity: Manage MCP Servers.

  3. Click View Raw Config.

  4. Paste the content into the file.

{
  "mcpServers": {
    "obox": {
      "command": "uv",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/obox",
        "/absolute/path/to/obox/main.py"
      ]
    }
  }
}

πŸ’‘ Important Tips

Add a Rule

To avoid typing use obox in every prompt, add a rule to your MCP client to automatically invoke Obox tools for development tasks.

Recommendation: Copy the content of .github/copilot-instructions.md into:

  • Cursor: Cursor Settings > Rules

  • Claude Code: CLAUDE.md

  • Other Clients: The equivalent system prompt or rules setting.

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    An autonomous AI development agent that enables full-stack coding, automated verification, RAG-powered code search, and quality assurance through MCP tools. Supports Gemini CLI, Claude Code CLI, with features like parallel verification, security scanning, and spec-driven development.
    5
    Apache 2.0
  • A
    license
    -
    quality
    C
    maintenance
    A comprehensive Model Context Protocol toolkit that transforms AI assistants into autonomous agents capable of executing real-world tasks across filesystems, web requests, Git workflows, databases, system commands, and AI integrations.
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Empower any MCP-compatible AI Agent(MCP Client) with engineering-grade capabilities to understand, modify, run, and deliver real-world code repositories.
    670
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Package intelligence MCP for AI agents β€” 22 tools, 19 ecosystems, AGPL SDK, free.

  • User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vinhgiga/obox-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server