arc-mcp-server
- Repo stars 0
- Author repo skills-registry
mcp-server
Exposes Arc's core surfaces via the Model Context Protocol (MCP). External Claude Code instances, Cursor, or any MCP client can interact with Arc's task queue, skill tree, memory, and dispatch state.
Architecture
- Runtime: Bun +
@modelcontextprotocol/sdk - Transports: stdio (local, default) or HTTP (remote,
--transport http) - Auth: API key via
--auth-keyflag ormcp-server/auth_keycredential (HTTP only) - Database: Read/write to
db/arc.sqlitevia existingsrc/db.tsfunctions
Exposed Surfaces
Tools (read-write)
| Tool | Description |
|---|---|
list_tasks |
List tasks by status/priority (default: pending + active) |
create_task |
Queue a new task with subject, priority, skills |
get_task |
Fetch task details + result by ID |
close_task |
Mark task completed or failed with summary |
list_skills |
List installed skills with metadata |
get_status |
Agent status: pending/active counts, costs, last cycle |
Resources (read-only)
| Resource | URI | Description |
|---|---|---|
| Memory | arc://memory |
Current MEMORY.md contents |
| Cycle Log | arc://cycles |
Last 20 dispatch cycles |
CLI
arc skills run --name mcp-server -- start # stdio transport (default)
arc skills run --name mcp-server -- start --transport http # HTTP on port 3100
arc skills run --name mcp-server -- start --port 3100 --auth-key KEY # custom port + auth
When to Load
Load when: building or maintaining the MCP server itself, debugging connection issues, or adding new tools to the exposed surface. Do NOT load when using Arc as a dispatch agent — this skill is for managing the MCP server, not for tasks executed by external MCP clients.
Claude Code Integration
Add to .claude/settings.json (external client config, not Arc's own dispatch):
{
"mcpServers": {
"arc": {
"command": "bun",
"args": ["skills/arc-mcp-server/server.ts"],
"alwaysLoad": true
}
}
}
alwaysLoad: true is recommended for external clients — it ensures tools are immediately available without a ToolSearch round-trip. Do NOT add arc-mcp-server to Arc's own .claude/settings.json; Arc uses the arc CLI directly during dispatch and does not connect to its own MCP surface.
For remote HTTP:
{
"mcpServers": {
"arc": {
"url": "http://localhost:3100/mcp",
"alwaysLoad": true
}
}
}
Timeout Configuration
External Claude Code clients connecting via HTTP transport should set MCP_TOOL_TIMEOUT for long-running resource operations:
export MCP_TOOL_TIMEOUT=120000 # 120 seconds (default: 60s)
This is primarily relevant for large MEMORY.md reads or extended cycle log queries. Arc's native tools (list_tasks, create_task, get_status) typically complete in <5 seconds. See Claude Code v2.1.142+ release notes for details on MCP_TOOL_TIMEOUT behavior.
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: arc0btc/arc-starter — distributed by TomeVault.
- Fluxly category
- AI
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @tomevault-io · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Guided setup
- External API key
- Required · Vendor-specific
- Detected OS requirements
- macOS · Linux · Windows
- Runtime requirements
- Bun
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Runtime: Bun + @modelcontextprotocol/sdk Transports: stdio (local, default) or HTTP (remote, --transport http) Auth: API key via --auth-key flag or mcp-server/authkey credential (HTTP only)
Exposed Surfaces
Tool · Description listtasks · List tasks by status/priority (default: pending + active) createtask · Queue a new task with subject, priority, skills
Resource · URI · Description Memory · arc://memory · Current MEMORY.md contents Cycle Log · arc://cycles · Last 20 dispatch cycles
CLI
Load when: building or maintaining the MCP server itself, debugging connection issues, or adding new tools to the exposed surface. Do NOT load when using Arc as a dispatch agent — this skill is for managing the MCP server, not for tasks executed by external…
# mcp-server
Exposes Arc's core surfaces via the Model Context Protocol (MCP). External Claude Code instances, Cursor, or any MCP client can interact with Arc's task queue, skill tree, memory, and dispatch state.
## Architecture
- **Runtime:** Bun + `@modelcontextprotocol/sdk`
- **Transports:** stdio (local, default) or HTTP (remote, `--transport http`)
- **Auth:** API key via `--auth-key` flag or `mcp-server/auth_key` credential (HTTP only)
- **Database:** Read/write to `db/arc.sqlite` via existing `src/db.ts` functions
## Exposed Surfaces
### Tools (read-write)
| Tool | Description |
|------|-------------|
| `list_tasks` | List tasks by status/priority (default: pending + active) |
| `create_task` | Queue a new task with subject, priority, skills |
| `get_task` | Fetch task details + result by ID |
| `close_task` | Mark task completed or failed with summary |
| `list_skills` | List installed skills with metadata |
| `get_status` | Agent status: pending/active counts, costs, last cycle |
### Resources (read-only)
| Resource | URI | Description |
|----------|-----|-------------|
| Memory | `arc://memory` | Current MEMORY.md contents |
| Cycle Log | `arc://cycles` | Last 20 dispatch cycles |
## CLI
```
arc skills run --name mcp-server -- start # stdio transport (default)
arc skills run --name mcp-server -- start --transport http # HTTP on port 3100
arc skills run --name mcp-server -- start --port 3100 --auth-key KEY # custom port + auth
```
## When to Load
Load when: building or maintaining the MCP server itself, debugging connection issues, or adding new tools to the exposed surface. Do NOT load when using Arc as a dispatch agent — this skill is for managing the MCP server, not for tasks executed by external MCP clients.
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Architecture → Exposed Surfaces → Tools (read-write) → Resources (read-only) → CLI → When to Load
terms -> Runtime · Transports · Auth · Database
files/cmd -> @modelcontextprotocol/sdk · --transport http · --auth-key · mcp-server/authkey · db/arc.sqlite · src/db.ts · listtasks · createtask
body sha256 -> 686f18b4354c
Decide Fit First
Design Intent
How To Use It
Boundaries And Review