orbitrs/orbit-mcp
If you are the rightful owner of orbit-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Orbit MCP Server is a Model Context Protocol server designed for the Orbit Framework, providing development APIs for AI agents.
Orbit MCP Server
A Model Context Protocol (MCP) server for the Orbit Framework that exposes development APIs to AI agents.
Overview
The Orbit MCP Server allows AI agents to interact with the Orbit Framework for various tasks, including:
- Creating and modifying components
- Managing projects
- Building and compiling
- Running tests
- Accessing documentation
- Generating code
Installation
cargo install --path .
Usage
Starting the MCP Server
orbit-mcp --port 3000
Command-line options
--port <PORT>
: Set the port for the MCP server (default: 3000)--host <HOST>
: Set the host address (default: 127.0.0.1)--project <PATH>
: Set the path to the Orbit project (default: current directory)
API Documentation
The MCP server exposes the following API endpoints:
HTTP API (REST)
GET /api/status
: Get server statusGET /api/docs
: Get server documentation
WebSocket API (JSON-RPC)
Connect to ws://{host}:{port}/api/ws
to access the WebSocket API.
Component Management
component.create
: Create a new componentcomponent.update
: Update an existing componentcomponent.delete
: Delete a componentcomponent.list
: List available componentscomponent.analyze
: Analyze a component
Project Management
project.create
: Create a new projectproject.update
: Update project configurationproject.info
: Get project information
Build and Compilation
build.compile
: Compile the projectbuild.errors
: Get compilation errors
Testing
test.run
: Run teststest.results
: Get test results
Documentation
docs.query
: Query documentationdocs.examples
: Get examples
Code Generation
code.generate
: Generate code based on specificationscode.suggest
: Get code suggestions
Integration with AI Agents
This MCP server is designed to be easily integrated with AI agents. See the examples directory for sample integrations.
License
MIT