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
Update MCP documentation to reflect current functionality
- Update overview to highlight single hello_manage_app tool with context-aware operations
- Remove outdated tool references and consolidate to actual implementation
- Update authentication section to OAuth 2.1
- Replace development details with link to MCP repo README
- Update community link to Hello Slack community
- Comment out usage examples section per user request
- Streamline documentation to match current MCP server capabilities
Add warning that Cursor may complain if using an MCP server and claude sonnet
12
-
13
-
*/}
14
-
15
-
{/*
16
7
Model Context Protocol (MCP) server for creating and managing Hellō applications directly from your AI assistant.
17
8
18
9
<Callouttype="warning">
@@ -21,185 +12,129 @@ Model Context Protocol (MCP) server for creating and managing Hellō application
21
12
22
13
## Overview
23
14
24
-
The Hellō Admin MCP server provides programmatic access to the Hellō Admin API, allowing you to create and manage your Hellō applications without switching to the [Hellō Console](https://console.hello.coop), streamlining your development workflow by integrating application management directly into your AI assistant.
25
-
26
-
**Note:** The MCP Server can only perform creation and management operations. To delete applications, you'll need to visit the [Hellō Console](https://console.hello.coop).
27
-
28
-
## Authorization
29
-
30
-
MCP Clients gain access to the APIs by requesting the `mcp` scope. The resulting access token is only valid for an hour, and no refresh token is provided. If the access token has expired, then a new authorization flow will be initiated.
31
-
32
-
For clients using the `stdio` transport, the authorization flow is started by the local MCP server. For clients using the new `streamableHTTP` transport, the client will detect authorization is required and will start the authorization flow.
15
+
The Hellō MCP server provides a **single powerful tool** (`hello_manage_app`) that lets you create and manage your Hellō applications directly from your AI assistant, including uploading logos for both light and dark themes.
33
16
34
17
## Installation
35
18
36
19
| Cursor | VS Code |
37
20
|--------|---------|
38
-
| [Install MCP Server](https://cursor.com/install-mcp?name=hello-admin&config=eyJ1cmwiOiJodHRwczovL21jcC5oZWxsby5jb29wIn0K) | [Install on VS Code](vscode:mcp/install?%7B%22name%22%3A%22Hell%C5%8D%20Admin%22%2C%22url%22%3A%22https%3A//mcp.hello-beta.net%22%2C%22type%22%3A%22http%22%7D) |
39
-
40
-
### VS Code Configuration
21
+
|[Install MCP Server](https://cursor.com/install-mcp?name=hello-admin&config=eyJ1cmwiOiJodHRwczovL21jcC5oZWxsby5jb29wIn0K)|[Install on VS Code](vscode:mcp/install?%7B%22name%22%3A%22Hell%C5%8D%20Admin%22%2C%22url%22%3A%22https%3A//mcp.hello.coop%22%2C%22type%22%3A%22http%22%7D)|
41
22
42
-
Add to your `.vscode/mcp.json` file in your workspace or global settings:
23
+
### Configuration Options
43
24
44
-
**HTTP Transport (Remote):**
25
+
**HTTP Transport (Remote - Recommended):**
45
26
```json
46
27
{
47
-
"servers": {
48
-
"hello-admin": {
49
-
"type": "http",
50
-
"url": "https://mcp.hello.coop"
51
-
}
28
+
"hello-admin-http": {
29
+
"url": "https://mcp.hello.coop/",
30
+
"type": "http"
52
31
}
53
32
}
54
33
```
55
34
56
-
**Stdio Transport (Local):**
35
+
**NPM Package (Local):**
57
36
```json
58
37
{
59
-
"servers": {
60
-
"hello-admin": {
61
-
"type": "stdio",
62
-
"command": "npx",
63
-
"args": ["-y", "@hellocoop/mcp@latest"]
64
-
}
38
+
"hello-admin-stdio": {
39
+
"command": "npx",
40
+
"args": ["-y", "@hellocoop/mcp@latest"],
41
+
"type": "stdio"
65
42
}
66
43
}
67
44
```
68
45
69
-
LIST WHICH FILE IT IS FOR EACH AGENT
70
-
71
-
### Other MCP Clients
72
-
73
-
For other MCP clients, use these configurations:
74
-
75
-
**Stdio Transport (Local):**
76
-
77
-
```json
78
-
{
79
-
"mcpServers": {
80
-
"hello-admin": {
81
-
"command": "npx",
82
-
"args": ["-y", "@hellocoop/mcp@latest"]
83
-
}
84
-
}
85
-
}
86
-
```
87
-
88
-
**HTTP Transport (Remote):**
89
-
```json
90
-
{
91
-
"mcpServers": {
92
-
"hello-admin": {
93
-
"url": "https://mcp.hello.coop",
94
-
"type": "http"
95
-
}
96
-
}
97
-
}
98
-
```
46
+
📖 **[Local Development Setup](https://github.com/hellocoop/MCP#local-development)** - For running from source
99
47
100
48
## Available Tools
101
49
102
-
The MCP server provides these tools for managing your Hellō applications:
103
-
104
-
### Profile & Publisher Management
105
-
- **`hello_get_profile`** - Get your developer profile and publishers
106
-
- **`hello_create_publisher`** - Create a new publisher (team/organization)
107
-
- **`hello_read_publisher`** - Read detailed publisher information
0 commit comments