ANTHROPIC MCP Tools
Total Tools: 3
Quick Reference
# List all anthropic tools
dmtools list | jq '.tools[] | select(.name | startswith("anthropic_"))'
# Example usage
dmtools anthropic_ai_chat [arguments]
Usage in JavaScript Agents
// Direct function calls for anthropic tools
const result = anthropic_ai_chat(...);
const result = anthropic_ai_chat_with_files(...);
const result = anthropic_list_models(...);
Available Tools
| Tool Name | Description | Parameters |
|---|---|---|
anthropic_ai_chat | Send a text message to Anthropic Claude AI and get response | message (string, required) |
anthropic_ai_chat_with_files | Send a text message to Anthropic Claude AI with file attachments. Supports images, documents, and other file types for analysis and questions. | message (string, required)filePaths (array, required) |
anthropic_list_models | Get a list of available anthropic foundation models | None |
Detailed Parameter Information
anthropic_ai_chat
Send a text message to Anthropic Claude AI and get response
Parameters:
message(string) Required- Text message to send to AI
Example:
dmtools anthropic_ai_chat "value"
// In JavaScript agent
const result = anthropic_ai_chat("message");
anthropic_ai_chat_with_files
Send a text message to Anthropic Claude AI with file attachments. Supports images, documents, and other file types for analysis and questions.
Parameters:
-
message(string) Required- Text message to send to Anthropic Claude AI
- Example:
What is in this image? Please analyze the document content.
-
filePaths(array) Required- Array of file paths to attach to the message
- Example:
['/path/to/image.png', '/path/to/document.pdf']
Example:
dmtools anthropic_ai_chat_with_files "value" "value"
// In JavaScript agent
const result = anthropic_ai_chat_with_files("message", "filePaths");
anthropic_list_models
Get a list of available anthropic foundation models
Parameters: None
Example:
dmtools anthropic_list_models
// In JavaScript agent
const result = anthropic_list_models();