- Home
- MCP servers
- admin-mcp
admin-mcp
- javascript
4
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can install and run the MCP server for creating and managing Hellō applications, with both local and remote transports. This server automatically includes your developer context in every operation, making it ideal for AI assistants that need to work with your profile, teams, and applications in tandem.
How to use
You interact with the MCP server through a single core tool named hello_manage_app. Use it to create, read, update, and manage application data, including secrets and logos. Every response includes your current profile, teams, and applications, so your AI assistant stays aware of your entire development context as you perform actions.
How to install
Prerequisites: you need Node.js installed on your system to run MCP server transports and dependencies.
Choose a transport method and configure your MCP client accordingly. You can run the MCP server locally via a stdio transport or connect remotely using HTTP.
Configuration and connection methods
Three practical setup options are shown below. Use the one that matches your preferred transport.
{
"hello-admin-stdio": {
"command": "npx",
"args": ["-y", "@hellocoop/admin-mcp@latest"],
"type": "stdio"
}
}
HTTP transport (remote)
If you want to run the MCP server remotely, use the HTTP transport configuration.
{
"hello-admin-http": {
"url": "https://admin-mcp.hello.coop/",
"type": "http"
}
}
Available tools
hello_manage_app
Core tool for all application management tasks. Supports actions to create, read, update, create_secret, update_logo_from_data, and update_logo_from_url. Always includes your profile, teams, and applications in responses and auto-uses a default context when not specified.