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.

Available Tools

3 tools
just_project_runnerB

Finalizes project setup by detecting structure. Call this tool immediately after creating any new project.

ParametersJSON Schema
NameRequiredDescriptionDefault
root_working_directoryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It only says 'detecting structure' without disclosing side effects, preconditions, or what the tool modifies. The agent cannot predict the tool's behavior confidently.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no fluff and front-loaded. It is concise and well-structured, though the brevity sacrifices necessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given it has an output schema but no annotations, the description fails to explain what 'finalizes project setup' does, what structure detection involves, or what the output contains. The description is too minimal for an agent to understand the tool's complete contract.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one required parameter (root_working_directory) with no description, and the tool description doesn't mention it at all. With 0% schema description coverage, the agent has zero semantic understanding of this parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('Finalizes project setup') and resource, and distinguishes from sibling tools (init_project) by indicating this is a post-creation step. However, 'finalizes' is somewhat vague and doesn't specify what the finalization entails.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance: 'Call this tool immediately after creating any new project.' This makes the invocation context clear. It doesn't mention when not to use it or alternatives, but the instruction is specific enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

obox_fastapi_init_projectA

Initializes a new FastAPI project at the specified path. Sets up uv environment with the specified Python version and installs fastapi[standard].

Args: path: The absolute path where the project should be initialized. python_version: The Python version to use (default: "3.12").

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYes
python_versionNo3.12

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the transparency burden. It discloses the key actions: initializing a project, setting up a uv environment, and installing fastapi[standard]. While it does not detail side effects like overwriting or network requirements, it provides meaningful behavioral context beyond the tool name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, with the primary purpose stated in the first sentence. The Args section is structured and provides necessary details without unnecessary verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main functionality and all parameters, and an output schema exists so return details are omitted. It lacks explicit preconditions (e.g., whether the path must be empty) but is adequate for a project initialization tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has no parameter descriptions (0% coverage), but the description's Args section explains both parameters: path is an absolute path, and python_version is the Python version with a default of '3.12'. This fully compensates for the schema's lack of semantic detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool's function: 'Initializes a new FastAPI project at the specified path.' It also details the setup steps (uv environment, FastAPI installation), making it distinct from sibling tools like react_init_project.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for FastAPI project initialization but does not explicitly mention when to use it versus alternatives or provide exclusions. Usage context is inferred from the tool name and description rather than stated directly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

react_init_projectA

Initializes a new React project at the specified path. Setup includes:

  • Vite (React + TypeScript)

  • Tailwind CSS v4

  • TanStack Query

  • Tabler Icons React

Args: path: The absolute path where the project should be initialized.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It mentions the setup contents but lacks critical details such as whether existing files will be overwritten, whether the path must be empty, or whether network access is required. These omissions leave safety and side-effect behavior unclear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: a clear purpose statement, a compact bullet list of dependencies, and an explicit Args section for the parameter. Every line contributes to understanding, with no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and an output schema, the description adequately covers the core purpose and setup details. However, it omits behavioral prerequisites and side effects, which are important for an initialization tool. The presence of an output schema reduces the need to describe return values, but the missing safety context slightly lowers completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides no description for the 'path' parameter, but the description clarifies that it expects an absolute path, which adds meaningful semantics. While it could include constraints like 'must be empty' or 'will create directory', the current explanation is sufficient for a single-parameter tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool initializes a new React project at a specified path and lists the specific technologies included (Vite, Tailwind CSS, TanStack Query, Tabler Icons). This distinguishes it from sibling tools like obox_fastapi_init_project, which is focused on FastAPI.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for creating a React project with the listed technologies but does not explicitly state when to use it or when not to. It does not reference sibling tools or provide alternative tool suggestions, leaving usage context only implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updatesv0.1.0
    • First observedjust_project_runner
    • First observedobox_fastapi_init_project
    • First observedreact_init_project

TDQS

A3.6/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: one initializes FastAPI, one initializes React, and one finalizes any newly created project. There is no functional overlap between them.

Naming Consistency3/5

The two initialization tools follow a similar pattern (framework_init_project), but the finalizer tool (just_project_runner) uses a completely different naming style. Additionally, one tool has the 'obox_' prefix while the other does not, causing inconsistency.

Tool Count5/5

Three tools is a well-scoped count for a project scaffolding server. Each tool serves a distinct purpose and the count is within the ideal 3-15 range.

Completeness3/5

The tool set covers the init and finalize lifecycle for FastAPI and React, but lacks support for other common frameworks and has no additional operations like listing projects or managing dependencies. The finalizer is somewhat disconnected from the init tools, requiring manual invocation.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    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
    -
  • A
    license
    Not graded
    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
    Not graded
    quality
    B
    maintenance
    Empower any MCP-compatible AI Agent(MCP Client) with engineering-grade capabilities to understand, modify, run, and deliver real-world code repositories.
    495 PyPI
    1,061
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    A local AI agent system that gives any LLM real access to the filesystem, terminal, and codebase via MCP, usable as a standalone terminal agent or Continue.dev integration in VS Code.
    205 npm
    MIT