Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:15
forks:7
updated:2026年3月20日 07:35
SKILL.md
| name | console-log |
| description | Logs a message to the console. |
Logs a message to the console.
Execute this tool directly via the MCP Plugin HTTP API:
curl -X POST http://localhost:8080/api/tools/console-log \
-H "Content-Type: application/json" \
-d '{
"message": "string_value"
}'
For complex input (multi-line strings, code), save the JSON to a file and use
-d @args.json.Or pipe via stdin:
curl -X POST ${HOST}/api/tools/console-log -H "Content-Type: application/json" -d @- <<'EOF' {"param": "value"} EOF
curl -X POST http://localhost:8080/api/tools/console-log \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"message": "string_value"
}'
| Name | Type | Required | Description |
|---|---|---|---|
message | string | Yes |
{
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
]
}
This tool does not return structured output.