@coretext-ai/coretext-ai-23dd16b9-855a-4d53-888e-51ffe1478190
v1.0.1
Published
Coretext Devops Server
Keywords
Readme
coretext-devops-server
Coretext Devops Server
Installation
npm install @coretext-ai/coretext-ai-23dd16b9-855a-4d53-888e-51ffe1478190Configuration
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": {
"coretext-devops-server": {
"command": "npx",
"args": ["@coretext-ai/coretext-ai-23dd16b9-855a-4d53-888e-51ffe1478190"],
"env": {
"NPM_TOKEN": "your-value-here",
"GITHUB_TOKEN": "your-value-here"
}
}
}
}Available Tools
This server provides the following tools:
google-gmail Service
- get_draft: Get a specific draft by ID
- get_label: Get label details by ID
- get_thread: Get a specific thread by ID
- send_draft: Send an existing draft
- get_message: Get a specific message by ID
- get_profile: Get user's Gmail profile information
- list_drafts: List draft messages in user's mailbox
- list_labels: List all labels in the user's mailbox
- create_draft: Create a new draft message. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted message.
- create_label: Create a new custom label
- delete_draft: Delete a draft. Returns 204 No Content with empty body on success.
- delete_label: Delete a custom label. Returns 204 No Content with empty body on success.
- list_threads: List email threads in user's mailbox
- send_message: Send an email message. Requires message in RFC 2822 format encoded as base64url string
- 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.
- update_draft: Update an existing draft. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted message.
- update_label: Update an existing label
- 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_messages: List messages in user's mailbox with optional filtering
- modify_thread: Modify labels on all messages in a thread
- 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.
- 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.
- modify_message: Modify labels on a message (add/remove labels, mark read/unread)
- untrash_thread: Remove a thread from trash
- untrash_message: Remove a message from trash
github Service
- list_issues: List repository issues
- create_issue: Create a new issue
- create_branch: Create a new branch
- delete_branch: Delete a branch
- list_branches: List repository branches
- get_repository: Get repository information
- create_repository: Create a new repository for the authenticated user
- delete_repository: Delete a repository (requires admin access)
- list_repositories: List repositories for the authenticated user
- update_repository: Update repository settings and metadata
datadog Service
- list_monitors: List all monitors with optional filtering
- create_monitor: Create a new monitor for alerting
- list_dashboards: List all dashboards
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
