instruction stringlengths 14 43 | input stringclasses 1
value | output stringlengths 214 392 |
|---|---|---|
What tools do you have available? | I'll check what MCP tools are available:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/list",
"id": 1
}\n```\n\nAvailable MCP tools:\n\n**read_file**: Read contents of a file\n**list_directory**: List files and directories in a path\n**search_files**: Search for patterns in files\n**execute_command**: Execute ... | |
List available MCP tools | I'll check what MCP tools are available:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/list",
"id": 1
}\n```\n\nAvailable MCP tools:\n\n**read_file**: Read contents of a file\n**list_directory**: List files and directories in a path\n**search_files**: Search for patterns in files\n**execute_command**: Execute ... | |
Show me what functions I can use | I'll check what MCP tools are available:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/list",
"id": 1
}\n```\n\nAvailable MCP tools:\n\n**read_file**: Read contents of a file\n**list_directory**: List files and directories in a path\n**search_files**: Search for patterns in files\n**execute_command**: Execute ... | |
Read the README.md file | I'll use the read_file MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "read_file",
"arguments": {
"path": "README.md"
}
}
}\n``` | |
Show me the contents of config.json | I'll use the read_file MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "read_file",
"arguments": {
"path": "config.json"
}
}
}\n``` | |
Read the main.py file | I'll use the read_file MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "read_file",
"arguments": {
"path": "main.py"
}
}
}\n``` | |
Open the package.json file | I'll use the read_file MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "read_file",
"arguments": {
"path": "package.json"
}
}
}\n``` | |
List files in current directory | I'll use the list_directory MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "list_directory",
"arguments": {
"path": "."
}
}
}\n``` | |
Show contents of src folder | I'll use the list_directory MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "list_directory",
"arguments": {
"path": "src"
}
}
}\n``` | |
List files in /home/user | I'll use the list_directory MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "list_directory",
"arguments": {
"path": "/home/user"
}
}
}\n``` | |
What's in the docs directory? | I'll use the list_directory MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "list_directory",
"arguments": {
"path": "docs"
}
}
}\n``` | |
Find Python files containing 'import torch' | I'll use the search_files MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "search_files",
"arguments": {
"pattern": "import torch",
"file_type": "*.py"
}
}
}\n``` | |
Search for 'TODO' in all files | I'll use the search_files MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "search_files",
"arguments": {
"pattern": "TODO",
"path": "."
}
}
}\n``` | |
Look for 'function' in JavaScript files | I'll use the search_files MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "search_files",
"arguments": {
"pattern": "function",
"file_type": "*.js"
}
}
}\n``` | |
Find 'class' definitions in Python code | I'll use the search_files MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "search_files",
"arguments": {
"pattern": "class ",
"file_type": "*.py"
}
}
}\n``` | |
Run 'ls -la' command | I'll use the execute_command MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "execute_command",
"arguments": {
"command": "ls -la"
}
}
}\n``` | |
Execute 'git status' | I'll use the execute_command MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "execute_command",
"arguments": {
"command": "git status"
}
}
}\n``` | |
Run 'pip list' | I'll use the execute_command MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "execute_command",
"arguments": {
"command": "pip list"
}
}
}\n``` | |
Check disk usage with 'df -h' | I'll use the execute_command MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "execute_command",
"arguments": {
"command": "df -h"
}
}
}\n``` | |
What's the weather in New York? | I'll use the get_weather MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "get_weather",
"arguments": {
"location": "New York"
}
}
}\n``` | |
Get weather for London | I'll use the get_weather MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "get_weather",
"arguments": {
"location": "London"
}
}
}\n``` | |
Check weather in Tokyo | I'll use the get_weather MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "get_weather",
"arguments": {
"location": "Tokyo"
}
}
}\n``` | |
Weather forecast for San Francisco | I'll use the get_weather MCP tool to help you:\n\n```json\n{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "get_weather",
"arguments": {
"location": "San Francisco"
}
}
}\n``` |
README.md exists but content is empty.
- Downloads last month
- 13