BEDROCK MCP Tools
Total Tools: 2
Quick Reference
# List all bedrock tools
dmtools list | jq '.tools[] | select(.name | startswith("bedrock_"))'
# Example usage
dmtools bedrock_ai_chat [arguments]
Usage in JavaScript Agents
// Direct function calls for bedrock tools
const result = bedrock_ai_chat(...);
const result = bedrock_list_models(...);
Available Tools
| Tool Name | Description | Parameters |
|---|---|---|
bedrock_ai_chat | Send a text message to AWS Bedrock AI and get response | message (string, required) |
bedrock_list_models | Get a list of available AWS Bedrock foundation models | None |
Detailed Parameter Information
bedrock_ai_chat
Send a text message to AWS Bedrock AI and get response
Parameters:
message(string) Required- Text message to send to AI
Example:
dmtools bedrock_ai_chat "value"
// In JavaScript agent
const result = bedrock_ai_chat("message");
bedrock_list_models
Get a list of available AWS Bedrock foundation models
Parameters: None
Example:
dmtools bedrock_list_models
// In JavaScript agent
const result = bedrock_list_models();