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
Refine Admin MCP documentation for clarity and completeness
- Remove commented-out key features section for a cleaner presentation
- Update installation instructions for various tools with specific transport config details
- Enhance troubleshooting section with common issues and solutions
- Add new installation guidance for Qodo Gen and clarify manual configuration steps
- Streamline security and limitations section for better readability
Copy file name to clipboardExpand all lines: pages/docs/admin-mcp.mdx
+50-82Lines changed: 50 additions & 82 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,6 @@ including uploading logos for both light and dark themes.
13
13
This MCP server is currently in BETA. Help us improve the server by filing [issues or making suggestions](https://github.com/hellocoop/MCP/issues).
14
14
</Callout>
15
15
16
-
{/*
17
-
## Key Features
18
-
19
-
- One powerful tool (`hello_manage_app`) for all app management actions
20
-
- Supports `create`, `update`, `read`, `create_secret`, and logo uploads
21
-
- Compatible with major AI clients: Cursor, Claude, VS Code, LM Studio, and more
22
-
- Automatically includes full developer context (user, teams, applications)
23
-
- Secure OAuth 2.1 flow with short-lived access tokens
24
-
- Supports both HTTP (remote) and STDIO (local) configurations
25
-
- Access resources such as the Logo Design Guide, Login Button Guide, Quickstart Setup, and full API documentation
26
-
*/}
27
-
28
16
## Installing
29
17
30
18
### Cursor
@@ -65,10 +53,14 @@ claude mcp add hello-admin http https://mcp.hello.coop/
65
53
See [Claude guide](https://docs.anthropic.com/en/docs/claude-code/mcp) for more information.
66
54
67
55
### Claude Desktop
68
-
???
56
+
**Manual Install**:
57
+
Navigate to Connector Settings → Add a Custom Connector → Paste the [HTTP Transport config](#manual).
58
+
See [Claude Desktop Guide](https://modelcontextprotocol.io/docs/tutorials/use-remote-mcp-server) for more information.
69
59
70
60
### Gemini CLI
71
-
???
61
+
**Manual Install**:
62
+
Create `.gemini/settings.json` in your project's root directory → Add `mcpServers` block → Paste the [HTTP Transport config](#manual).
63
+
See [Gemini CLI Guide](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md#configure-the-mcp-server-in-settingsjson) for more information.
72
64
73
65
### Goose
74
66
<spanclassName="mt-4 block"/>
@@ -77,8 +69,8 @@ See [Claude guide](https://docs.anthropic.com/en/docs/claude-code/mcp) for more
77
69
</a>
78
70
79
71
**Manual Install**:
80
-
Advanced settings → Extensions → Add custom extension and paste the [HTTP config](@ROHAN).
81
-
See [Goose guide](@ROHAN) for more information.
72
+
Advanced settings → Extensions → Add custom extension and paste the [HTTP Transport config](#manual).
73
+
See [Example guide](https://docs.pieces.app/products/mcp/goose) for more information.
82
74
83
75
### LM Studio
84
76
<spanclassName="mt-4 block"/>
@@ -87,31 +79,37 @@ See [Goose guide](@ROHAN) for more information.
87
79
</a>
88
80
89
81
**Manual Install**:
90
-
Program → Install → Edit mcp.json and paste the [HTTP config](@ROHAN).
91
-
See [LM Studio](@ROHAN) for more information.
82
+
Program → Install → Edit mcp.json and paste the [HTTP Transport config](#manual).
83
+
See [LM Studio](https://lmstudio.ai/blog/lmstudio-v0.3.17#add-mcp-servers-to-lm-studio) for more information.
84
+
85
+
### Qodo Gen
92
86
93
-
-----------
87
+
**Manual Install**:
88
+
Open the chat panel → Connect more tools → Add new MCP → Paste the [Stdio Transport config](#manual) config.
89
+
See [Qodo Gen](https://docs.qodo.ai/qodo-documentation/qodo-gen/qodo-gen-chat/agentic-mode/agentic-tools-mcps#id-1.-local-mcps) for more information.
90
+
91
+
---
94
92
95
-
You can install the Hellō MCP server manually using a simple configuration object, or use one of the quick-install options available in select tools.
93
+
Don’t see your tool listed? [File an issue](https://github.com/hellocoop/hello.dev/issues) and we’ll add support.
96
94
97
-
### Manual Configuration (Works in Most Tools)
98
-
> Using a supported tool like Cursor or VS Code? You can skip ahead to the Quick Installation Options below.
95
+
---
99
96
100
-
Use the following configurations if you're setting up the MCP server manually or using a tool that prompts for input.
97
+
### Manual
101
98
102
-
**HTTP Transport (Remote – Recommended)**
99
+
**From Source**:
100
+
Clone the repo and follow the instructions at [hellocoop/MCP](https://github.com/hellocoop/MCP#local-development).
103
101
102
+
**HTTP Transport (Remote - Recommended)**:
104
103
```json
105
104
{
106
105
"hello-admin-http": {
107
106
"url": "https://mcp.hello.coop/",
108
107
"type": "http"
109
108
}
110
109
}
111
-
````
112
-
113
-
**NPM Package (Local)**
110
+
```
114
111
112
+
**NPM Package (Local - Most compatible)**:
115
113
```json
116
114
{
117
115
"hello-admin-stdio": {
@@ -122,48 +120,10 @@ Use the following configurations if you're setting up the MCP server manually or
122
120
}
123
121
```
124
122
125
-
### Quick Installation Options
126
-
Some tools support direct install links or commands that preconfigure the MCP server for you.
0 commit comments