@coretext-ai/coretext-ai-ec6ba2f8-4af9-4942-9b60-f1d536f63b1c
v1.0.5
Published
Mitch Test Server Updated Again And Again
Downloads
17
Keywords
Readme
mitch-test-server-updated-again-and-again
Mitch Test Server Updated Again And Again
Installation
npm install @coretext-ai/coretext-ai-ec6ba2f8-4af9-4942-9b60-f1d536f63b1cConfiguration
Environment Variables
The following environment variables are required:
NPM_TOKEN: User-defined environment variableGITHUB_TOKEN: User-defined environment variable
Usage
With Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"mitch-test-server-updated-again-and-again": {
"command": "npx",
"args": ["@coretext-ai/coretext-ai-ec6ba2f8-4af9-4942-9b60-f1d536f63b1c"],
"env": {
"NPM_TOKEN": "your-value-here",
"GITHUB_TOKEN": "your-value-here"
}
}
}
}Available Tools
This server provides the following tools:
google-contacts Service
- create_contact: Create a new contact with specified fields
- get_person: Get a specific contact by resource name
- update_contact: Update an existing contact. IMPORTANT: Include the 'etag' field in the request body to prevent conflicts. Get the current etag by first calling get_contact or from a previous create/update response.
- delete_contact: Delete a contact permanently
- list_connections: List authenticated user's contacts
- search_contacts: Search across all contacts with text query
- batch_get_people: Get multiple contacts by resource names
- list_contact_groups: List all contact groups
- create_contact_group: Create a new contact group
- get_contact_group: Get a specific contact group by resource name
- update_contact_group: Update an existing contact group. IMPORTANT: Include the 'etag' field in the contactGroup object to prevent conflicts. Get the current etag by first calling get_contact_group or from a previous create/update response.
- delete_contact_group: Delete a contact group
- modify_contact_group_members: Add or remove members from a contact group
- list_directory_people: List people in the authenticated user's domain directory (G Suite/Workspace). TROUBLESHOOTING: If returns empty results, verify: 1) User is part of Google Workspace domain, 2) Directory access is enabled, 3) User has sufficient privileges (may need domain admin), 4) OAuth scopes include directory.readonly
- search_directory_people: Search people in the authenticated user's domain directory. TROUBLESHOOTING: If returns empty results, verify: 1) User is part of Google Workspace domain, 2) Directory access is enabled, 3) User has sufficient privileges (may need domain admin), 4) OAuth scopes include directory.readonly
- list_other_contacts: List other contacts (auto-created contacts from interactions)
- search_other_contacts: Search other contacts with text query
- copy_other_contact: Copy an other contact to the authenticated user's contacts
google-calendar Service
- list_calendars: Returns the calendars on the user's calendar list
- get_calendar: Returns metadata for a calendar
- create_calendar: Creates a secondary calendar
- update_calendar: Updates metadata for a calendar
- delete_calendar: Deletes a secondary calendar. Returns 204 No Content with empty body on success.
- list_events: Returns events on the specified calendar
- get_event: Returns an event
- create_event: Creates an event
- update_event: Updates an event
- delete_event: Deletes an event. Returns 204 No Content with empty body on success.
- quick_add: Creates an event based on a simple text string
- get_free_busy: Returns free/busy information for a set of calendars
- list_acl: Returns the rules in the access control list for the calendar
- create_acl: Creates an access control rule
google-gmail Service
- send_message: Send an email message. Requires message in RFC 2822 format encoded as base64url string
- get_message: Get a specific message by ID
- list_messages: List messages in user's mailbox with optional filtering
- modify_message: Modify labels on a message (add/remove labels, mark read/unread)
- trash_message: Move a message to trash (RECOMMENDED for deleting emails). This is the standard way users delete emails - messages remain recoverable for 30 days.
- untrash_message: Remove a message from trash
- delete_message: PERMANENTLY delete a message - IMMEDIATE and IRREVERSIBLE. WARNING: Use trash_message instead for normal email deletion. Only use this for sensitive data that must be immediately destroyed. Bypasses trash completely. REQUIRES https://mail.google.com/ scope. Returns 204 No Content with empty body on success.
- list_labels: List all labels in the user's mailbox
- get_label: Get label details by ID
- create_label: Create a new custom label
- update_label: Update an existing label
- delete_label: Delete a custom label. Returns 204 No Content with empty body on success.
- list_threads: List email threads in user's mailbox
- get_thread: Get a specific thread by ID
- modify_thread: Modify labels on all messages in a thread
- trash_thread: Move an entire email thread/conversation to trash (RECOMMENDED for deleting conversations). This is the standard way users delete email threads - remains recoverable for 30 days.
- untrash_thread: Remove a thread from trash
- delete_thread: PERMANENTLY delete an entire thread - IMMEDIATE and IRREVERSIBLE. WARNING: Use trash_thread instead for normal conversation deletion. Only use this for sensitive data that must be immediately destroyed. Bypasses trash completely. REQUIRES https://mail.google.com/ scope. Returns 204 No Content with empty body on success.
- list_drafts: List draft messages in user's mailbox
- get_draft: Get a specific draft by ID
- create_draft: Create a new draft message. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted message.
- update_draft: Update an existing draft. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted message.
- send_draft: Send an existing draft
- delete_draft: Delete a draft. Returns 204 No Content with empty body on success.
- get_profile: Get user's Gmail profile information
google-analytics Service
- run_report: Run a standard report with dimensions and metrics for a GA4 property
- batch_run_reports: Run multiple reports in a single request for efficiency
slack Service
- auth_test: Test authentication and get basic info about the bot
- post_message: Send a message to a channel
- update_message: Update an existing message
- delete_message: Delete a message
- list_conversations: List conversations (channels) the bot can access
- create_conversation: Create a new conversation (channel)
- join_conversation: Join a conversation
- get_conversation_info: Get information about a conversation
- get_conversation_history: Get message history from a conversation
- get_conversation_members: Get members of a conversation
- invite_to_conversation: Invite users to a conversation
- get_user_info: Get information about a user
- list_users: List users in the workspace
- get_user_presence: Get user presence information
- set_user_presence: Set user presence
- upload_file: Upload a file to Slack
- add_reaction: Add a reaction to a message
- remove_reaction: Remove a reaction from a message
- search_messages: Search for messages in the workspace
- open_dialog: Open a dialog with a user
- schedule_message: Schedule a message to be sent at a later time
Development
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run tests
npm testLicense
MIT
Generated with Template Orchestrator
