Need to manage Hellō authentication apps from Claude? This connects to the Hellō Admin API and gives you a single tool called hello_manage_app that handles everything: creating apps, updating settings, generating OAuth secrets, and uploading logos with light/dark theme support. Every response automatically includes your full developer context (profile, teams, applications), so Claude never loses track of what you're working on. Works over stdio with npx or via HTTP at admin-mcp.hello.coop. It's in beta and the team wants feedback. Reach for this if you're building OAuth integrations with Hellō and want to configure apps conversationally instead of clicking through a dashboard.
Model Context Protocol (MCP) server for creating and managing Hellō applications.
🚧 BETA Status: This MCP server is currently in beta. We're actively seeking feedback and welcome contributions! Please report issues, suggest improvements, or submit pull requests to help us improve the developer experience.
📖 Full Documentation & Installation Guide
Copy one of these configurations into your MCP client settings:
NPM Package (Latest):
{
"hello-admin-stdio": {
"command": "npx",
"args": ["-y", "@hellocoop/admin-mcp@latest"],
"type": "stdio"
}
}
HTTP Transport (Remote):
{
"hello-admin-http": {
"url": "https://admin-mcp.hello.coop/",
"type": "http"
}
}
📖 See Local Development Setup for running from source
This MCP server provides a single powerful tool (hello_manage_app) that lets you create and manage your Hellō applications directly from your AI assistant. Unlike traditional APIs, every operation automatically includes your complete developer context - profile, teams, and applications - making it perfect for AI assistants.
📖 For detailed usage instructions, examples, and troubleshooting, visit: hello.dev/docs/admin-mcp
🎯 Core Tool:
hello_manage_app - The main tool for all application management
create, read, update, create_secret, update_logo_from_data, update_logo_from_url🔄 Always In Context: Unlike traditional APIs, every tool response includes your complete developer context:
This means you never lose context between operations - perfect for AI assistants that need to understand your complete development environment.
hello_manage_app Actions:📝 create - Create new applications
{ profile, application, action_result }👁️ read - Read application details
client_id: Returns your complete profile contextclient_id: Returns profile + specific application{ profile, application?, action_result }✏️ update - Update application settings
{ profile, application, action_result }🔑 create_secret - Generate client secrets
{ profile, application, client_secret, action_result }🎨 update_logo_from_data - Upload logo from base64 data
{ profile, application, update_result, action_result }🔗 update_logo_from_url - Upload logo from URL
{ profile, application, update_result, action_result }Every response includes your complete profile context, making it perfect for AI assistants that need to maintain awareness of your development environment.
HELLO_DOMAIN: Override the default domain (defaults to hello.coop)HELLO_ADMIN: Override the admin server URL (defaults to https://admin.hello.coop)We want your feedback! This MCP server is in beta and we're actively improving it based on real-world usage.
For local development and testing:
# Clone the repository
git clone https://github.com/hellocoop/admin-mcp
cd admin-mcp
# Install dependencies
npm install
The configure your AI client to run the local version
Local Development (Node.js):
{
"hello-admin-local": {
"command": "node",
"args": ["path/to/HelloCoop/admin-mcp/src/stdio.js"],
"type": "stdio"
}
}
Run the comprehensive test suite:
# Run all automated tests
npm test