You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/MCP.md
+48-26Lines changed: 48 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Add servers to `~/.hyperagent/config.json` (same format as VS Code's `mcp.json`)
29
29
Or use the setup script:
30
30
31
31
```bash
32
-
just mcp-setup-everything # sets up the MCP everything test server
32
+
hyperagent --mcp-setup-everything # sets up the MCP everything test server
33
33
```
34
34
35
35
### 2. Start HyperAgent
@@ -127,6 +127,27 @@ are shown during approval.
127
127
128
128
## Commands
129
129
130
+
### Standalone setup commands
131
+
132
+
These command-line options run one setup/show action and then exit. They do
133
+
not start an agent session, and they do not require the repository Justfile.
134
+
135
+
| Command | Action |
136
+
|---------|--------|
137
+
|`hyperagent --mcp-setup-everything`| Configure the MCP everything test server. Requires npm/npx; first use downloads `@modelcontextprotocol/server-everything`. |
138
+
|`hyperagent --mcp-setup-github`| Configure the GitHub MCP server. Requires npm/npx and `GITHUB_TOKEN`; the command will remind you to use `gh auth token` if needed. |
139
+
|`hyperagent --mcp-setup-filesystem [dir]`| Configure the filesystem MCP server rooted at `dir` (default `/tmp/mcp-fs`). Requires npm/npx; first use downloads `@modelcontextprotocol/server-filesystem`. |
140
+
|`hyperagent --mcp-show-config`| Print configured MCP servers from `~/.hyperagent/config.json`. |
141
+
|`hyperagent --mcp-setup-workiq`| Configure Microsoft Work IQ stdio MCP. Pre-fetches `@microsoft/workiq@latest`, runs its interactive EULA command, then writes config. |
142
+
|`hyperagent --mcp-add-http <name> <url> [clientId] [tenantId] [scopes] [flow]`| Add a generic HTTP MCP server, optionally with OAuth. |
143
+
|`hyperagent --mcp-m365-create-app [args...]`| Create/reuse an Entra app registration for Agent 365 HTTP MCP servers. Requires Azure CLI and `az login`. |
0 commit comments