# Console Log

> ---

- Skill: `ivanmurzak/console-log` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ivanmurzak/console-log`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ivanmurzak/console-log/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: IvanMurzak (https://skillmd.com/u/ivanmurzak)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ivanmurzak/console-log

---

﻿---
name: console-log
description: Logs a message to the console.
---

# Logs a message to the console.

Logs a message to the console.

## How to Call

### HTTP API (Direct Tool Execution)

Execute this tool directly via the MCP Plugin HTTP API:

```bash
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:
> ```bash
> curl -X POST ${HOST}/api/tools/console-log -H "Content-Type: application/json" -d @- <<'EOF'
> {"param": "value"}
> EOF
> ```

#### With Authorization (if required)

```bash
curl -X POST http://localhost:8080/api/tools/console-log \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{
  "message": "string_value"
}'
```

## Input

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `message` | `string` | Yes |  |

### Input JSON Schema

```json
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string"
    }
  },
  "required": [
    "message"
  ]
}
```

## Output

This tool does not return structured output.


