import { Callout } from 'nextra/components'
The Admin MCP server lets you create and manage your Hellō applications directly from your AI assistant, including uploading logos for both light and dark themes.
This MCP server is currently in BETA, but it is safe to try out as it is not able to make destructive changes. Help us improve the server by filing [issues or making suggestions](https://github.com/hellocoop/admin-mcp/issues).Manual Install:
Navigate to Connector Settings → Add a Custom Connector → Paste the HTTP Transport config.
See Claude Desktop Guide for more information.
Manual Install:
Create .gemini/settings.json in your project's root directory → Add mcpServers block → Paste the HTTP Transport config.
See Gemini CLI Guide for more information.
Manual Install:
Advanced settings → Extensions → Add custom extension and paste the HTTP Transport config.
See Example guide for more information.
Manual Install:
Program → Install → Edit mcp.json and paste the HTTP Transport config.
See LM Studio for more information.
Manual Install:
Open the chat panel → Connect more tools → Add new MCP → Paste the Stdio Transport config config.
See Qodo Gen for more information.
Don’t see your tool listed? File an issue and we’ll add support.
From Source:
Clone the repo and follow the instructions at hellocoop/admin-mcp.
HTTP Transport (Remote - Recommended):
{
"hello-admin-http": {
"url": "https://admin-mcp.hello.coop/",
"type": "http"
}
}NPM Package (Local - Most compatible):
{
"hello-admin-stdio": {
"command": "npx",
"args": ["-y", "@hellocoop/admin-mcp@latest"],
"type": "stdio"
}
}We only add one tool to your environment, hello_manage_app, keeping you under any tool limits imposed by your IDE or CLI. All functionality is exposed as actions by that tool.
Actions:
create– Create new applications with smart defaultsread– Retrieve application or profile detailsupdate– Update app settings (redirect URIs, names, etc.)create_secret– Generate OAuth client secretsupdate_logo_from_data– Upload a logo using base64 dataupdate_logo_from_url– Upload a logo via public URL
Each response includes:
- Your user profile (name, email, picture)
- Your teams and organizations, along with assigned roles
- All apps associated with your teams
- Current team and app state
- Short-lived tokens (1-hour expiration)
- Access scoped to create, read, update. Destructive actions are intentionally restricted.
- Cannot delete applications (use Hellō Console for deletion)
- Token requires re-authentication after 1 hour of inactivity
We want your feedback! This MCP server is in beta and we're actively improving it.
- Documentation: MCP Server Repository
- Report Issues: GitHub Issues
- Contribute: Submit Pull Requests
- Community: Join our Slack Community
For local development, testing, and advanced usage, visit the Admin MCP Server GitHub repo.
