# neuron MCP server

AI-powered WhatsApp chatbot platform with tools for bots, campaigns, and contacts.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-conquext-neuron
- Repository: https://github.com/conquext/neuron

## Install
- Command: `npx -y neuron-mcp-server`
- Endpoint: https://mcp.neuron.ng/mcp
- Auth: Not captured

## Setup notes
- Package: Npm neuron-mcp-server v1.0.1
- Remote endpoint: https://mcp.neuron.ng/mcp

## Tools
- neuron_register (Register New User) - Register a new user account with name, email, password, and organization name. Creates both the user and an initial organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_login (Login to Neuron) - Authenticate with Neuron. Three modes:
1. No args: Opens a browser URL for secure authorization (recommended — no credentials shared with AI)
2. token: Paste an MCP token from the Neuron dashboard
3. email+password: Legacy login (credentials visible to AI) Endpoint: https://mcp.neuron.ng/mcp
- neuron_refresh_token (Refresh Access Token) - Refresh the access token using a refresh token. Automatically sets the new access token for subsequent API calls. Endpoint: https://mcp.neuron.ng/mcp
- neuron_switch_org (Switch Organization) - Switch to a different organization. Returns a new access token scoped to the target organization and automatically sets it. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_organizations (List Organizations) - Retrieve all organizations the authenticated user belongs to, including their roles in each. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_profile (Get User Profile) - Retrieve the authenticated user's profile information including name, email, role, and current organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_whoami (Check Current Account) - Check which Neuron account is currently logged in, including user name, email, role, and organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_switch_instance (Switch Neuron Instance) - Switch the MCP server to target a different Neuron backend instance. Auth tokens are preserved per instance — if you've previously logged in to an instance, switching back restores your session automatically.

Call with no args to list known instances and see which is active. Endpoint: https://mcp.neuron.ng/mcp
- neuron_logout (Logout) - Clear the current auth token locally. Does NOT revoke server-side MCP tokens — revoke from the Neuron dashboard (Settings > MCP Tokens) for full invalidation. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_bot (Create Bot) - Create a new AI bot with specified name, model, and behavior instructions. Returns the created bot object. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_bots (List Bots) - Retrieve all bots accessible to the current user, including their configurations and status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_bot (Get Bot) - Retrieve detailed information about a specific bot including its configuration, status, and associated resources. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_bot (Update Bot) - Update an existing bot's configuration. Only provided fields are modified; omitted fields remain unchanged. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_bot (Delete Bot) - Permanently delete a bot and all its associated data. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_pause_bot (Pause Bot) - Pause a bot to temporarily stop it from processing new messages. The bot retains its configuration and can be resumed later. Endpoint: https://mcp.neuron.ng/mcp
- neuron_resume_bot (Resume Bot) - Resume a previously paused bot so it begins processing new messages again. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_bot_analytics (Get Bot Analytics) - Retrieve analytics and usage statistics for a specific bot, including message counts, response times, and conversation metrics. Endpoint: https://mcp.neuron.ng/mcp
- neuron_attach_knowledge_base (Attach Knowledge Base) - Attach a knowledge base to a bot to enhance its responses with domain-specific knowledge. Optional priority determines retrieval order when multiple knowledge bases are attached. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_bot_knowledge_bases (List Bot Knowledge Bases) - Retrieve all knowledge bases attached to a specific bot, including their priorities and metadata. Endpoint: https://mcp.neuron.ng/mcp
- neuron_detach_knowledge_base (Detach Knowledge Base) - Remove a knowledge base from a bot. The bot will no longer reference this knowledge base when generating responses. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_api_key (Create API Key) - Create a new API key for programmatic access to a specific bot. Store the key securely as it cannot be retrieved later. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_api_keys (List API Keys) - Retrieve all API keys associated with a specific bot, including their names, creation dates, expiration status, and revocation status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_revoke_api_key (Revoke API Key) - Permanently revoke an API key to immediately invalidate it and prevent further programmatic access. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bot_api_chat (Bot API Chat) - Send a message to a bot via the API and receive a streaming or complete AI-generated response. Requires a valid API key with 'nrn_' prefix. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bot_api_send (Bot API Send) - Send an outbound message through the bot API to a specified phone number. Supports text and media messages. Requires a valid API key. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bot_api_list_conversations (Bot API List Conversations) - Retrieve a paginated list of conversations managed by the bot. Supports filtering by conversation status. Requires a valid API key. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bot_api_get_messages (Bot API Get Messages) - Retrieve message history for a specific conversation with cursor-based pagination. Requires a valid API key. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bot_api_get_bot (Bot API Get Bot) - Retrieve configuration and status information about the bot associated with the provided API key. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_conversations (List Conversations) - Retrieve a paginated list of conversations for a specific bot, with optional filtering by status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_conversation (Get Conversation) - Retrieve detailed information about a specific conversation, including its status, participants, and metadata. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_messages (Get Conversation Messages) - Retrieve messages from a specific conversation in chronological order, with optional cursor-based pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_takeover_conversation (Takeover Conversation) - Transfer control of a conversation from the bot to a human agent. The bot will stop auto-responding until the conversation is released. Endpoint: https://mcp.neuron.ng/mcp
- neuron_release_conversation (Release Conversation) - Release a conversation back to the bot, returning control from a human agent. The bot will resume auto-responding. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_message (Send Message) - Send a message to an existing conversation. Supports text, image, and document message types with optional media attachments. Endpoint: https://mcp.neuron.ng/mcp
- neuron_compose_message (Compose Message) - Compose and send a new message to a phone number via a specific channel. Automatically creates a new conversation if one does not exist. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_whatsapp (Send WhatsApp Message) - Send a WhatsApp message to a phone number or group. Auto-resolves which channel to use (org default > first connected). Supports text, image, audio, video, and document types. Endpoint: https://mcp.neuron.ng/mcp
- neuron_edit_message (Edit Message) - Edit the content of a previously sent message in a conversation. Only the message sender can edit their messages. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_message (Delete Message) - Permanently delete a specific message from a conversation. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_close_conversation (Close Conversation) - Close an active conversation, marking it as completed. The bot will stop responding and the conversation is archived. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_knowledge_base (Create Knowledge Base) - Create a new knowledge base to store and organize information, documents, and entries. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_knowledge_bases (List Knowledge Bases) - Retrieve all knowledge bases accessible to the current user. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_knowledge_base (Get Knowledge Base) - Retrieve detailed information about a specific knowledge base by its ID. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_knowledge_base (Update Knowledge Base) - Update the properties of an existing knowledge base such as name, description, or root instruction. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_knowledge_base (Delete Knowledge Base) - Permanently delete a knowledge base and all its associated entries and documents. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_kb_entry (Create Knowledge Base Entry) - Add a new entry (note, document, or information piece) to a knowledge base. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_kb_entries (List Knowledge Base Entries) - Retrieve entries from a knowledge base with optional filtering and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_kb_entry (Update Knowledge Base Entry) - Update the content, title, folder, or source of an existing knowledge base entry. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_kb_entry (Delete Knowledge Base Entry) - Permanently delete a specific entry from a knowledge base. Endpoint: https://mcp.neuron.ng/mcp
- neuron_upload_document (Upload Document) - Upload a text document to a knowledge base. The document will be automatically chunked and indexed for semantic search. Endpoint: https://mcp.neuron.ng/mcp
- neuron_search_knowledge (Search Knowledge) - Perform semantic search across all entries and documents in a knowledge base to find relevant information. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_kb_bots (List Knowledge Base Bots) - Retrieve all bots that are connected to or using a specific knowledge base. Endpoint: https://mcp.neuron.ng/mcp
- neuron_ingest_knowledge (Ingest Knowledge) - Ingest content into a knowledge base. Supports deduplication via externalId and optional LLM processing (summarize, extract_facts, or custom instruction). Endpoint: https://mcp.neuron.ng/mcp
- neuron_sync_knowledge (Sync Knowledge) - Trigger a synchronization operation to refresh embeddings, reindex content, or update the knowledge base state. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_tool (Create Tool) - Create a custom API tool that the bot can invoke during conversations to fetch external data or trigger actions. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_tools (List Tools) - Retrieve all custom API tool integrations configured for a specific bot, including their endpoints and configuration. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_tool (Update Tool) - Modify an existing custom API tool's configuration, including its endpoint, authentication, or request template. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_tool (Delete Tool) - Permanently remove a custom API tool integration from a bot. The bot will no longer be able to invoke this tool in conversations. Endpoint: https://mcp.neuron.ng/mcp
- neuron_test_tool (Test Tool) - Execute a dry-run test of a custom API tool with sample arguments to verify the endpoint responds correctly. Endpoint: https://mcp.neuron.ng/mcp
- neuron_add_tool_secret (Add Tool Secret) - Store or update a secret credential (API key, token, etc.) for a custom tool integration. Secrets are encrypted at rest. Endpoint: https://mcp.neuron.ng/mcp
- neuron_remove_tool_secret (Remove Tool Secret) - Permanently delete a stored secret from a custom tool integration. The tool will lose access to this credential. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_webhook (Create Webhook) - Register a new inbound webhook endpoint that triggers bot actions when called by an external service. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_webhooks (List Webhooks) - Retrieve all inbound webhooks configured for a specific bot, including their status and configuration. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_webhook (Update Webhook) - Modify an existing inbound webhook's configuration, such as its name, event type, or processing prompt. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_webhook (Delete Webhook) - Permanently remove an inbound webhook from a bot. External services will no longer be able to trigger this endpoint. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_webhook_logs (Get Webhook Logs) - Retrieve execution logs for an inbound webhook to monitor incoming requests and debug processing issues. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_reflections (List Reflections) - Retrieve pending reflections that the bot has generated from conversations, awaiting human review. Optionally filter by approval status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_approve_reflection (Approve Reflection) - Approve a bot-generated reflection to incorporate the learned insight into the bot's future behavior and responses. Endpoint: https://mcp.neuron.ng/mcp
- neuron_reject_reflection (Reject Reflection) - Reject a bot-generated reflection to prevent it from being incorporated into the bot's learned behavior. Endpoint: https://mcp.neuron.ng/mcp
- neuron_sync_reflections (Sync Reflections) - Synchronize all approved reflections into the bot's active knowledge base, applying learned insights to future conversations. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_channels (List Channels) - Retrieve all WhatsApp channels configured in the current organization, including their type and connection status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_channel (Create Channel) - Create a new WhatsApp channel with either Meta Cloud API or Baileys (direct WhatsApp) integration. Meta Cloud channels require metaPhoneNumberId and metaAccessToken. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_channel (Get Channel) - Retrieve detailed information about a specific WhatsApp channel, including its configuration, type, and connection status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_channel (Update Channel) - Update configuration of an existing WhatsApp channel. Only provided fields are modified; omitted fields remain unchanged. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_channel (Delete Channel) - Permanently delete a WhatsApp channel and disconnect any active sessions. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_assign_bot_to_channel (Assign Bot to Channel) - Assign a bot to handle incoming messages on a specific WhatsApp channel. Replaces any previously assigned bot. Endpoint: https://mcp.neuron.ng/mcp
- neuron_unassign_bot_from_channel (Unassign Bot from Channel) - Remove the bot assignment from a WhatsApp channel. The channel will stop auto-responding to messages. Endpoint: https://mcp.neuron.ng/mcp
- neuron_start_channel_session (Start Channel Session) - Start a Baileys (direct WhatsApp) session for the channel. Generates a QR code for device pairing. Only applicable to Baileys-type channels. Endpoint: https://mcp.neuron.ng/mcp
- neuron_stop_channel_session (Stop Channel Session) - Stop the active Baileys session for the channel and disconnect from WhatsApp. The channel can be restarted later. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_channel_status (Get Channel Status) - Retrieve the current connection status and session details for a specific channel (e.g., connected, disconnected, qr_pending). Endpoint: https://mcp.neuron.ng/mcp
- neuron_request_pair_code (Request Pair Code) - Request a numeric pairing code for a Baileys channel as an alternative to QR code scanning. Requires the phone number to pair with. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_channel_groups (List Channel Groups) - Retrieve all WhatsApp groups that the channel is participating in, including group metadata. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_group_participants (Get Group Participants) - Retrieve the list of participants in a specific WhatsApp group accessible through a channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_whatsapp_contacts (List WhatsApp Contacts) - Retrieve contacts from the WhatsApp account connected to this channel, with optional search filtering. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_channel_events (Get Channel Events) - Retrieve the event log for a channel, including connection events, message events, and errors. Supports pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_channel_qr (Get Channel QR Code) - Retrieve the current QR code for pairing a Baileys channel with WhatsApp. A session must be started first. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_bot_channels (List Bot Channels) - Retrieve all WhatsApp channels connected to a specific bot, including primary and secondary connections. Endpoint: https://mcp.neuron.ng/mcp
- neuron_add_bot_channel (Add Bot Channel) - Connect an additional WhatsApp channel to a bot as a secondary number. The bot will respond to messages on this channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_remove_bot_channel (Remove Bot Channel) - Disconnect a WhatsApp channel from a bot. The bot will no longer respond to messages on this channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_browse_pool (Browse Pool) - Browse the shared marketplace pool of published bots, tools, knowledge bases, and reflections with optional filtering by type, category, tags, or search query. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_pool_item (Get Pool Item) - Retrieve detailed information about a specific item in the marketplace pool, including its description, category, tags, and install count. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_published (List My Published Items) - List all items the current organization has published to the marketplace pool. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_installed (List Installed Items) - List all items the current organization has installed from the marketplace pool. Endpoint: https://mcp.neuron.ng/mcp
- neuron_publish_to_pool (Publish to Pool) - Publish a bot, tool, knowledge base, or reflection to the shared marketplace pool for other organizations to discover and install. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_pool_item (Update Pool Item) - Update a pool item you have published — metadata (name, description, category, tags) and content fields (setupInstructions, defaultSecrets for tool_template items). The underlying resource is re-snapshotted and version is bumped on every update. Endpoint: https://mcp.neuron.ng/mcp
- neuron_unpublish_from_pool (Unpublish from Pool) - Permanently remove a published item from the marketplace pool. Organizations that installed this item will retain their copies. Endpoint: https://mcp.neuron.ng/mcp
- neuron_install_from_pool (Install from Pool) - Install a resource from the marketplace pool into the current organization. Choose 'fork' for an independent copy or 'subscribe' to receive future updates from the publisher. Endpoint: https://mcp.neuron.ng/mcp
- neuron_pull_pool_update (Pull Pool Update) - Pull the latest updates for a subscribed pool resource to sync with the publisher's changes. Only applies to items installed with 'subscribe' mode. Endpoint: https://mcp.neuron.ng/mcp
- neuron_toggle_featured (Toggle Featured Status) - Toggle the featured status of a pool item. Featured items appear prominently in the marketplace. Requires admin privileges. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_organization (Get Organization) - Retrieve detailed information about a specific organization, including its name, settings, and configuration. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_organization (Update Organization) - Update organization settings such as name, description, or configuration preferences. Only provided fields are changed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_whatsapp_credentials (Update WhatsApp Credentials) - Update WhatsApp Business API credentials for the organization. These credentials are required for sending messages via the WhatsApp Cloud API. Endpoint: https://mcp.neuron.ng/mcp
- neuron_set_default_channel (Set Default WhatsApp Channel) - Set or clear the default WhatsApp channel for the organization. The default channel is used by neuron_send_whatsapp for auto-resolving which channel to send through. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_members (List Organization Members) - Retrieve a list of all members in the organization, including their roles and permissions. Endpoint: https://mcp.neuron.ng/mcp
- neuron_invite_member (Invite Organization Member) - Send an invitation to a new member to join the organization. The invitee receives an email with a link to accept. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_invitations (List Invitations) - Retrieve a list of all pending invitations for the organization that have not yet been accepted or revoked. Endpoint: https://mcp.neuron.ng/mcp
- neuron_revoke_invitation (Revoke Invitation) - Revoke a pending organization invitation so it can no longer be accepted. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_member (Update Member Permissions) - Update a member's permissions within the organization, such as conversation access. Only provided fields are changed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_remove_member (Remove Organization Member) - Permanently remove a member from the organization. The member loses all access immediately. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_audit_logs (List Audit Logs) - Retrieve audit logs for the organization, showing a chronological record of actions performed by members. Supports filtering by action type and resource. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_builtin_tools (List Built-in Tools) - Retrieve all available built-in tools with their enabled/disabled status for a specific bot. Built-in tools include WhatsApp actions (send messages, delete messages, post status), utility functions (web search, QR codes, weather), scheduling, knowledge base search, and more. Endpoint: https://mcp.neuron.ng/mcp
- neuron_toggle_builtin_tool (Toggle Built-in Tool) - Toggle a built-in tool on or off for a specific bot. Enabled tools become available in the bot's conversations. Example tool IDs: delete_message, post_to_channel, post_status, web_search, send_direct_message, react_to_message, set_reminder, create_poll. Endpoint: https://mcp.neuron.ng/mcp
- neuron_bulk_toggle_builtin_tools (Bulk Toggle Built-in Tools) - Enable or disable multiple built-in tools at once for a bot. More efficient than toggling tools individually. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_outbound_webhook (Create Outbound Webhook) - Register a new outbound webhook that sends HTTP POST requests to an external URL when specified bot events occur. Supported events: message.created, message.assistant, conversation.created, conversation.escalated, conversation.closed, bot.paused, bot.resumed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_outbound_webhooks (List Outbound Webhooks) - Retrieve all outbound webhooks configured for a specific bot, including their target URLs and subscribed event types. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_outbound_webhook (Update Outbound Webhook) - Modify an existing outbound webhook's configuration, including its destination URL, subscribed event types, or filter prompt. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_outbound_webhook (Delete Outbound Webhook) - Permanently remove an outbound webhook. The external endpoint will no longer receive event notifications from this bot. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_outbound_webhook_logs (Get Outbound Webhook Logs) - Retrieve delivery logs for an outbound webhook to monitor event dispatch history and debug delivery failures. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_contacts (List Contacts) - Retrieve all contacts for the current organization with optional filtering by search term, tag, and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_search_contacts (Search Contacts) - Search contacts by a query string across name, phone number, and email fields. Returns matching contacts ranked by relevance. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_contact (Get Contact) - Retrieve detailed information about a specific contact including their tags, notes, and associated lists. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_contact (Create Contact) - Create a new contact in the organization's address book. If notes are provided, they are saved as a structured note entry with source tracking. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_contact (Update Contact) - Update an existing contact's details. If notes are provided, they are appended as a new structured note entry without overwriting existing notes. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_contact (Delete Contact) - Permanently delete a contact and remove them from all contact lists. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_export_contacts (Export Contacts) - Export all contacts as a downloadable dataset for the current organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_import_contacts (Import Contacts) - Bulk import multiple contacts into the organization's address book. Accepts an array of contact objects with name, phone, and optional fields. Endpoint: https://mcp.neuron.ng/mcp
- neuron_populate_contacts (Populate Contacts) - Enrich existing contacts with additional data from connected messaging channels. Syncs profile information from linked platforms. Endpoint: https://mcp.neuron.ng/mcp
- neuron_sync_whatsapp_contacts (Sync WhatsApp Contacts) - Synchronize contacts from all connected WhatsApp channels into the organization's contact database. Creates new contacts for unseen numbers. Endpoint: https://mcp.neuron.ng/mcp
- neuron_semantic_search_contacts (Semantic Search Contacts) - Search contacts using natural language AI-powered semantic search. Finds contacts based on the meaning of their notes — skills, services, schedules, preferences, etc. Returns ranked results with relevance scores and AI-generated match reasons. Endpoint: https://mcp.neuron.ng/mcp
- neuron_audio_contact (Extract Contact from Audio) - Transcribe an audio recording and extract contact information (name, phone, email, notes, tags). Automatically saves the extracted contact to the organization's address book. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_contact_lists (List Contact Lists) - Retrieve all contact lists for the current organization with optional filtering by search term, type, and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_contact_list (Get Contact List) - Retrieve detailed information about a specific contact list, including member count and configuration. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_contact_list (Create Contact List) - Create a new contact list. Slug is auto-generated from name if not provided. For dynamic lists, provide criteria with rules and/or an AI prompt. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_contact_list (Update Contact List) - Update an existing contact list's name, slug, description, criteria, or refresh schedule. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_contact_list (Delete Contact List) - Permanently delete a contact list. System-protected lists (e.g., 'Do Not Contact') cannot be deleted. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_contact_list_members (Get Contact List Members) - Retrieve the members of a specific contact list with optional search filtering and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_add_to_contact_list (Add to Contact List) - Add one or more contacts to a list by contact ID or phone number. Phone numbers without existing contacts are auto-created as minimal contact records. Endpoint: https://mcp.neuron.ng/mcp
- neuron_remove_from_contact_list (Remove from Contact List) - Remove one or more contacts from a list by their contact IDs. Does not delete the contacts themselves. Endpoint: https://mcp.neuron.ng/mcp
- neuron_merge_contact_lists (Merge Contact Lists) - Merge two or more contact lists into a single unified list, deduplicating entries. Window merge creates a virtual union; materialized merge creates a static copy. Endpoint: https://mcp.neuron.ng/mcp
- neuron_find_contact_lists_for_contact (Find Contact Lists for Contact) - Retrieve all contact lists that a specific contact belongs to. Endpoint: https://mcp.neuron.ng/mcp
- neuron_refresh_contact_list (Refresh Contact List) - Trigger a refresh of a dynamic contact list. Re-evaluates criteria rules and/or AI prompt and materializes updated members. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_broadcasts (List Broadcasts) - Retrieve a paginated list of all broadcasts with optional filtering by status such as draft, sent, or scheduled. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_broadcast (Create Broadcast) - Create a new broadcast message in draft status. Provide recipients directly or use recipientSources to resolve from contact lists. The WhatsApp channel is auto-resolved if not specified. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_broadcast (Get Broadcast) - Retrieve detailed information about a specific broadcast, including its status, message content, and recipient summary. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_broadcast_recipients (Get Broadcast Recipients) - Retrieve the paginated list of recipients for a specific broadcast with their individual delivery status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_broadcast (Update Broadcast) - Update an existing broadcast's name, message content, or media before sending. The broadcast must still be in draft status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_broadcast (Delete Broadcast) - Permanently delete a broadcast and its recipient data. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_broadcast (Send Broadcast) - Send a broadcast message to all its recipients. The broadcast must be in draft status. This triggers message delivery and cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_billing (Get Billing Info) - Retrieve the current billing information, subscription plan, and usage details for the organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_checkout (Checkout Subscription) - Initiate a checkout session for a subscription plan upgrade. Returns a checkout URL or confirmation to complete the purchase. Endpoint: https://mcp.neuron.ng/mcp
- neuron_cancel_subscription (Cancel Subscription) - Cancel the current active subscription. Access continues until the end of the current billing period. Endpoint: https://mcp.neuron.ng/mcp
- neuron_upload_media (Upload Media) - Upload a media file (image, video, audio, or document) by providing its base64-encoded content. Returns a URL for use in messages and broadcasts. Endpoint: https://mcp.neuron.ng/mcp
- neuron_rewrite_text (Rewrite Text) - Rewrite or rephrase text using AI with specified tone, style, or instructions (e.g., make it more formal, translate, summarize). Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_campaigns (List Campaigns) - Retrieve all campaigns for the current organization with optional status filtering and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_campaign (Get Campaign) - Retrieve detailed information about a specific campaign including its status, budget, participants, and delivery metrics. Endpoint: https://mcp.neuron.ng/mcp
- neuron_campaign_marketplace (Browse Campaign Marketplace) - Browse available campaigns in the marketplace that your organization can join to earn rewards by sending messages. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_campaign (Create Campaign) - Create a new outreach campaign with target audience, messaging template, and schedule configuration. Requires a Pro or Business plan. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_campaign (Update Campaign) - Update a campaign that is in 'draft' or 'rejected' status. Active or completed campaigns cannot be modified. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_campaign (Delete Campaign) - Permanently delete a campaign that is in 'draft' status. Active or funded campaigns cannot be deleted. Endpoint: https://mcp.neuron.ng/mcp
- neuron_submit_campaign (Submit Campaign for Review) - Submit a draft campaign for admin review and approval. The campaign must be in 'draft' status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_fund_campaign (Fund Campaign) - Fund an approved campaign by deducting the total budget from the organization's wallet balance. Requires sufficient wallet funds. Endpoint: https://mcp.neuron.ng/mcp
- neuron_join_campaign (Join Campaign) - Join a marketplace campaign as a participant to earn rewards by sending messages through your WhatsApp channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_eligible_contacts (Get Eligible Contacts) - Retrieve contacts eligible to receive a campaign message. Respects deduplication rules and mutual contact requirements. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_campaign_message (Send Campaign Messages) - Send a campaign message to selected eligible contacts via WhatsApp. Requires the campaign to be in 'active' status and contacts to be eligible. Endpoint: https://mcp.neuron.ng/mcp
- neuron_my_participations (My Campaign Participations) - Retrieve all campaigns the current organization has joined as a participant, including earnings and delivery stats. Endpoint: https://mcp.neuron.ng/mcp
- neuron_campaign_participants (List Campaign Participants) - Retrieve all participants who have joined a campaign you own, including their delivery counts and earned rewards. Endpoint: https://mcp.neuron.ng/mcp
- neuron_pause_campaign (Pause Campaign) - Pause an active campaign to temporarily stop message delivery. Can be resumed later with the resume action. Endpoint: https://mcp.neuron.ng/mcp
- neuron_resume_campaign (Resume Campaign) - Resume a previously paused campaign to restart message delivery. Endpoint: https://mcp.neuron.ng/mcp
- neuron_stop_campaign (Stop Campaign) - Permanently stop an active campaign and refund the remaining unspent budget to the organization's wallet. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_wallet_balance (Wallet Balance) - Retrieve the current wallet balance for the organization, including available and pending amounts. Endpoint: https://mcp.neuron.ng/mcp
- neuron_wallet_transactions (Wallet Transactions) - Retrieve the wallet transaction history for the organization, with optional filtering by transaction type. Endpoint: https://mcp.neuron.ng/mcp
- neuron_fund_wallet (Fund Wallet) - Initialize a wallet funding transaction via Paystack. Returns a checkout URL to complete the payment in a browser. Endpoint: https://mcp.neuron.ng/mcp
- neuron_verify_wallet_funding (Verify Wallet Funding) - Verify a wallet funding transaction using the Paystack payment reference to confirm the payment was successful. Endpoint: https://mcp.neuron.ng/mcp
- neuron_verify_bank_account (Verify Bank Account) - Verify a Nigerian bank account number via Paystack to confirm the account holder name before saving. Endpoint: https://mcp.neuron.ng/mcp
- neuron_save_bank_account (Save Bank Account) - Save a verified bank account as the organization's payout destination. Verify the account first using neuron_verify_bank_account. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_bank_account (Get Bank Account) - Retrieve the saved bank account details currently configured as the organization's payout destination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_request_payout (Request Payout) - Request a payout to transfer funds from the organization wallet to the linked bank account. A bank account must be saved first. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_payouts (List Payouts) - Retrieve the payout history for the organization, including amounts, statuses, and timestamps. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_blog_post (Create Blog Post) - Create a new blog post in draft or published status with specified title, content, and optional metadata such as tags, excerpt, and SEO fields. Content supports full markdown (GFM) AND raw HTML — images/GIFs via ![alt](url), videos via <video>, YouTube/Loom embeds via <iframe>, collapsible sections via <details>/<summary>, plus <mark>, <kbd>, <abbr>, <div> with inline styles, etc. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_blog_posts (List Blog Posts) - Retrieve a paginated list of blog posts with optional filtering by status, author type, author ID, or tag. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_blog_post (Get Blog Post) - Retrieve a single blog post by its URL-friendly slug, including full content and metadata. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_blog_post (Update Blog Post) - Update an existing blog post's content, metadata, status, or SEO fields. Only provided fields are changed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_blog_post (Delete Blog Post) - Permanently delete a blog post by its ID. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_publish_blog_post (Publish Blog Post) - Publish a blog post, making it publicly visible. The post must be in 'draft' status. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_newsletters (List Newsletters) - Retrieve a paginated list of all WhatsApp Channel newsletters for the organization, with optional filtering by WhatsApp session channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_newsletter (Create Newsletter) - Create a new WhatsApp Channel newsletter for one-way broadcast updates. Requires a connected Baileys session on the specified channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_newsletter (Get Newsletter) - Retrieve detailed information about a specific WhatsApp Channel newsletter, including subscriber count and metadata. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_newsletter (Update Newsletter) - Update the name or description of an existing WhatsApp Channel newsletter. Only provided fields are changed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_newsletter (Delete Newsletter) - Permanently delete a WhatsApp Channel newsletter and remove it from WhatsApp. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_post_to_newsletter (Post to Newsletter) - Post a message to a WhatsApp Channel newsletter. All subscribers receive the message. Provide at least one of text or mediaUrl. This triggers delivery and cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_refresh_newsletter (Refresh Newsletter) - Re-fetch metadata (name, description, subscriber count) for a WhatsApp Channel newsletter from WhatsApp to synchronize local data. Endpoint: https://mcp.neuron.ng/mcp
- neuron_sync_newsletters (Sync Newsletters) - Synchronize and import WhatsApp Channels from a connected WhatsApp session into Neuron. Discovers channels created outside Neuron. Endpoint: https://mcp.neuron.ng/mcp
- neuron_browse_list_pool (Browse List Pool) - Browse verified contact lists available in the shared marketplace pool. Filter by category, region, or search term. Endpoint: https://mcp.neuron.ng/mcp
- neuron_submit_to_list_pool (Submit List to Pool) - Submit a contact list to the shared pool marketplace for other organizations to discover and use for ad distribution. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_ad_request (Create Ad Request) - Create an ad distribution request to send a message to contacts in pool lists matching target demographics. Deducts from wallet upon approval. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_ad_requests (List Ad Requests) - Retrieve all ad requests for the current organization with optional status filtering and pagination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_ad_request_analytics (Get Ad Request Analytics) - Retrieve delivery analytics and performance breakdown for a specific ad request, including delivery rates and cost metrics. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_ad_request (Get Ad Request) - Get detailed information about a specific ad request, including pool selections if targeting mode is manual. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_ad_request (Update Ad Request) - Update a draft or rejected ad request. Only draft and rejected ad requests can be edited. Rejected requests revert to draft on update. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_ad_request (Delete Ad Request) - Permanently delete a draft ad request. Only ad requests in draft status can be deleted. Endpoint: https://mcp.neuron.ng/mcp
- neuron_submit_ad_request (Submit Ad Request for Review) - Submit a draft ad request for admin review. The request must be in draft status. After submission, an admin must approve it before it can be funded. Endpoint: https://mcp.neuron.ng/mcp
- neuron_fund_ad_request (Fund Ad Request) - Fund an approved ad request from the organization wallet. This debits the budget amount and activates the campaign for distribution. If wallet balance is insufficient, returns shortfall information instead of an error. Endpoint: https://mcp.neuron.ng/mcp
- neuron_pause_ad_request (Pause Ad Request) - Pause an active ad request campaign. Distribution stops until resumed. Only active ad requests can be paused. Endpoint: https://mcp.neuron.ng/mcp
- neuron_resume_ad_request (Resume Ad Request) - Resume a paused ad request campaign. Distribution resumes from where it left off. Only paused ad requests can be resumed. Endpoint: https://mcp.neuron.ng/mcp
- neuron_stop_ad_request (Stop Ad Request) - Stop an active or paused ad request campaign permanently. Any remaining unspent budget is refunded to the organization wallet. This cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_reaction (Send Reaction) - Send or remove an emoji reaction on a WhatsApp message. Pass an empty emoji string to remove a reaction. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_sticker (Send Sticker) - Send a WebP sticker image via WhatsApp. Only supported on Baileys channels. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_location (Send Location) - Send a location pin via WhatsApp with coordinates and optional name/address. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_contact_card (Send Contact Card) - Send a vCard contact card via WhatsApp with name, phone, and optional organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_forward_message (Forward Message) - Forward a WhatsApp message from one chat to another. Uses copy-send approach — the message content is re-sent to the destination. Endpoint: https://mcp.neuron.ng/mcp
- neuron_mark_as_read (Mark as Read) - Mark a WhatsApp message as read, sending read receipts to the sender. Endpoint: https://mcp.neuron.ng/mcp
- neuron_set_presence (Set Presence) - Set typing indicator or online/offline presence on a WhatsApp chat. Only supported on Baileys channels. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_group_invite_link (Get Group Invite Link) - Get the invite link for a WhatsApp group. Only supported on Baileys channels where the bot is a group admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_group_subject (Update Group Subject) - Update the name/subject of a WhatsApp group. Requires the bot to be a group admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_group_description (Update Group Description) - Update the description of a WhatsApp group. Requires the bot to be a group admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_group_settings (Update Group Settings) - Change WhatsApp group settings: 'announcement' (only admins send), 'not_announcement' (everyone sends), 'locked' (only admins edit info), 'unlocked' (everyone edits info). Requires admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_group_members (Update Group Members) - Add, remove, promote, or demote members in a WhatsApp group. Provide phone numbers or JIDs. Requires admin privileges. Endpoint: https://mcp.neuron.ng/mcp
- neuron_set_group_join_approval (Set Group Join Approval) - Enable or disable join approval mode for a WhatsApp group. When enabled, join requests must be manually approved by admins. Requires admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_handle_join_requests (Handle Join Requests) - Approve or reject pending join requests for a WhatsApp group. Requires admin privileges. Endpoint: https://mcp.neuron.ng/mcp
- neuron_revoke_group_invite (Revoke Group Invite) - Revoke the current group invite link and generate a new one. The old link will stop working. Requires admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_leave_group (Leave Group) - Make the bot leave a WhatsApp group. This action is irreversible — the bot will need to be re-added by an admin. Endpoint: https://mcp.neuron.ng/mcp
- neuron_send_poll (Send Poll) - Send a poll message via WhatsApp. Polls support 2-12 options and optional multi-select. Only supported on Baileys channels. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_profile_name (Update Profile Name) - Update the bot's WhatsApp display name on the given channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_profile_picture (Update Profile Picture) - Update the bot's WhatsApp profile picture from an image URL. Endpoint: https://mcp.neuron.ng/mcp
- neuron_remove_profile_picture (Remove Profile Picture) - Remove the bot's WhatsApp profile picture, reverting to the default. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_profile_status (Update Profile Status) - Update the bot's WhatsApp status/bio text. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_privacy_settings (Get Privacy Settings) - Fetch the bot's current WhatsApp privacy settings (last seen, online, profile picture, status, read receipts, groups add). Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_privacy_setting (Update Privacy Setting) - Update a specific WhatsApp privacy setting. Settings: lastSeen (all/contacts/contact_blacklist/none), online (all/match_last_seen), profilePicture (all/contacts/contact_blacklist/none), status (all/contacts/contact_blacklist/none), readReceipts (all/none), groupsAdd (all/contacts/contact_blacklist). Endpoint: https://mcp.neuron.ng/mcp
- neuron_block_contact (Block Contact) - Block a WhatsApp contact. Blocked contacts cannot message the bot or see its profile. Endpoint: https://mcp.neuron.ng/mcp
- neuron_unblock_contact (Unblock Contact) - Unblock a previously blocked WhatsApp contact. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_blocklist (Get Blocklist) - Fetch the list of all blocked WhatsApp contacts for the bot on the given channel. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_business_profile (Get Business Profile) - Fetch the WhatsApp Business profile of an external contact, including description, website, category, and business hours. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_social_channels (List Social Channels) - Retrieve all social media channels (Instagram, Twitter/X) configured in the current organization. Endpoint: https://mcp.neuron.ng/mcp
- neuron_create_social_channel (Create Social Channel) - Create a new social media channel with platform credentials. Supports Instagram and Twitter/X. Credentials should be the full session JSON including account, cookies, headers, and platform-specific tokens. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_social_channel (Get Social Channel) - Retrieve detailed information about a specific social media channel, including its platform, credentials status, and connection state. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_social_channel (Update Social Channel) - Update an existing social media channel. Can update label, username, or refresh credentials. Endpoint: https://mcp.neuron.ng/mcp
- neuron_delete_social_channel (Delete Social Channel) - Permanently delete a social media channel and disconnect any active sessions. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp
- neuron_start_social_channel_session (Start Social Channel Session) - Start or reconnect a social media session for the channel. Initializes the platform client with stored credentials. Endpoint: https://mcp.neuron.ng/mcp
- neuron_stop_social_channel_session (Stop Social Channel Session) - Stop the active session for a social media channel. The channel can be restarted later. Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_social_channel_status (Get Social Channel Status) - Retrieve the current session status for a social media channel (e.g., connected, disconnected, error). Endpoint: https://mcp.neuron.ng/mcp
- neuron_validate_social_channel (Validate Social Channel) - Test whether the stored credentials for a social channel are still valid by making a test API call to the platform. Endpoint: https://mcp.neuron.ng/mcp
- neuron_assign_bot_to_social_channel (Assign Bot to Social Channel) - Assign a bot to handle interactions on a specific social media channel. The bot will be able to use the channel's credentials for social media actions. Endpoint: https://mcp.neuron.ng/mcp
- neuron_unassign_bot_from_social_channel (Unassign Bot from Social Channel) - Remove the bot assignment from a social media channel. The bot will lose access to the channel's social media credentials. Endpoint: https://mcp.neuron.ng/mcp
- neuron_list_scheduled_messages (List Scheduled Messages) - Retrieve a paginated list of scheduled messages for the current organization, with optional filtering by status (scheduled, sent, failed, cancelled). Endpoint: https://mcp.neuron.ng/mcp
- neuron_get_scheduled_message (Get Scheduled Message) - Retrieve detailed information about a specific scheduled message, including its status, send time, and message content. Endpoint: https://mcp.neuron.ng/mcp
- neuron_update_scheduled_message (Update Scheduled Message) - Update the message content, media, or send time of a scheduled message. Only messages with status 'scheduled' can be updated. Endpoint: https://mcp.neuron.ng/mcp
- neuron_cancel_scheduled_message (Cancel Scheduled Message) - Cancel a scheduled message to prevent it from being sent. Only messages with status 'scheduled' can be cancelled. This action cannot be undone. Endpoint: https://mcp.neuron.ng/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.conquext
- Version: 1.0.2
- Runtime: Npm
- Transports: STDIO, HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jun 28, 2026
- Source: https://registry.modelcontextprotocol.io
