en un clic
wechat-send-image
// Send an image or screenshot to WeChat. Use when the user wants to send a picture, screenshot, or photo to WeChat.
// Send an image or screenshot to WeChat. Use when the user wants to send a picture, screenshot, or photo to WeChat.
Send a file or image to WeChat via TeamMCP. Use when the user wants to send a file, image, or document to WeChat.
Deploy claude-code-router for third-party API support (OpenRouter, Gemini, DeepSeek, etc). Use when setting up non-Anthropic API providers for TeamMCP agents.
Quick start guide for TeamMCP first-time users. Walk through installation, configuration, and first deployment in minutes.
Check and process unread TeamMCP inbox messages. Reviews all unread items, acknowledges processed ones, and summarizes what needs attention.
Generate and post a daily standup report. Checks project state, pending tasks, and unread messages, then posts a structured summary to the specified channel.
Search team knowledge across messages, project state, and task history. Compiles relevant context from multiple TeamMCP sources to answer questions.
| name | wechat-send-image |
| description | Send an image or screenshot to WeChat. Use when the user wants to send a picture, screenshot, or photo to WeChat. |
| argument-hint | [image file path] |
Send an image file to WeChat. The image will be displayed inline in the WeChat conversation.
$ARGUMENTS contains the image file path. If not provided, look for recent screenshots or ask the user.
If $ARGUMENTS is provided, use it directly. Otherwise:
ls -t ~/Desktop/ScreenShot_* | head -5Use the Bash tool to run: ls -la "$ARGUMENTS"
Supported formats: jpg, jpeg, png, gif, bmp, webp
Use the Bash tool to run:
node -e "
fetch('http://localhost:3100/api/wechat/send-file', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer $TEAMMCP_KEY' },
body: JSON.stringify({ file_path: '$ARGUMENTS' })
}).then(r=>r.json()).then(d => {
if (d.ok) console.log('Image sent:', d.fileName, '(' + d.size + ' bytes)');
else console.error('Failed:', d.error);
});
"
Confirm the image was sent successfully.
image_item with encrypt_type: 1 and mid_size (ciphertext size)