@coretext-ai/mitch-test-project-1-cc34e70e-f270-4aee-91dc-038aa3b1444f
v1.0.1
Published
Mitch test project 1
Readme
mitch-test-project-1
Mitch test project 1
This MCP server was generated using the Template Orchestrator and includes the following integrations:
Available Tools
This MCP server provides 21 tools across 1 integrations:
Discord Tools
- discord_get_user: Get user by ID
- discord_get_guild: Get guild by ID
- discord_get_channel: Get channel by ID
- discord_add_reaction: Add a reaction to a message
- discord_edit_message: Edit a message
- discord_create_message: Create a message in a channel
- discord_create_webhook: Create a webhook
- discord_delete_channel: Delete a channel
- discord_delete_message: Delete a message
- discord_modify_channel: Modify a channel
- discord_execute_webhook: Execute a webhook
- discord_remove_reaction: Remove own reaction from a message
- discord_get_current_user: Get current user information
- discord_get_guild_member: Get a guild member
- discord_get_guild_members: Get guild members
- discord_get_guild_channels: Get guild channels
- discord_get_channel_message: Get a specific message
- discord_create_guild_channel: Create a new guild channel
- discord_get_channel_messages: Get channel messages
- discord_get_channel_webhooks: Get channel webhooks
- discord_get_current_user_guilds: Get current user's guilds
Installation
npm install @coretext-ai/mitch-test-project-1-cc34e70e-f270-4aee-91dc-038aa3b1444fEnvironment Setup
Create a .env file with the following variables:
DISCORD_ACCESS_TOKEN=your_discord_access_token_here
GITHUB_TOKEN=your_github_token_hereUsage
Running the server
# Development mode
npm run dev
# Production mode
npm run build && npm startUsing with Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"mitch-test-project-1": {
"command": "npx",
"args": ["@coretext-ai/mitch-test-project-1-cc34e70e-f270-4aee-91dc-038aa3b1444f"],
"env": {
"DISCORD_ACCESS_TOKEN": "your_discord_access_token_here",
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}Instructions for Fetching API Keys/Tokens
- COMING SOON
Advanced Features
Request Cancellation
This MCP server supports request cancellation according to the MCP cancellation specification. Clients can cancel in-progress requests by sending a notifications/cancelled message with the request ID.
When a request is cancelled:
- The server immediately stops processing the request
- Any ongoing API calls are aborted
- Resources are cleaned up
- No response is sent for the cancelled request
Progress Notifications
The server supports progress notifications for long-running operations according to the MCP progress specification.
To receive progress updates:
- Include a
progressTokenin your request metadata - The server will send
notifications/progressmessages with:- Current progress value
- Total value (when known)
- Human-readable status messages
Progress is reported for:
- Multi-step operations
- Batch processing
- Long-running API calls
- File uploads/downloads
Example progress notification:
{
"method": "notifications/progress",
"params": {
"progressToken": "operation-123",
"progress": 45,
"total": 100,
"message": "Processing item 45 of 100..."
}
}Generated Information
- Generated at: Tue Oct 07 2025 21:25:26 GMT+0000 (Coordinated Universal Time)
- Orchestrator version: 0.0.2
- Template repository: Coretext-AI-Dev/server-template-v2
- Total endpoints: 21
