apple-notes
Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
$ npx -y skills add braxtonROSE4/zorro-agent --skill mcporter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mcporterContext preview
The summary Claude sees to decide when to auto-load this skill.
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
name: mcporter
description: Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
version: 1.0.0
author: community
license: MIT
metadata:
zorro:
tags: [MCP, Tools, API, Integrations, Interop]
homepage: https://mcporter.dev
prerequisites:
commands: [npx]Use `mcporter` to discover, call, and manage [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) servers and tools directly from the terminal.
Requires Node.js:
# No install needed (runs via npx) npx mcporter list # Or install globally npm install -g mcporter
# List MCP servers already configured on this machine mcporter list # List tools for a specific server with schema details mcporter list <server> --schema # Call a tool mcporter call <server.tool> key=value
mcporter auto-discovers servers configured by other MCP clients (Claude Desktop, Cursor, etc.) on the machine. To find new servers to use, browse registries like [mcpfinder.dev](https://mcpfinder.dev) or [mcp.so](https://mcp.so), then connect ad-hoc:
# Connect to any MCP server by URL (no config needed) mcporter list --http-url https://some-mcp-server.com --name my_server # Or run a stdio server on the fly mcporter list --stdio "npx -y @modelcontextprotocol/server-filesystem" --name fs
# Key=value syntax
mcporter call linear.list_issues team=ENG limit:5
# Function syntax
mcporter call "linear.create_issue(title: \"Bug fix needed\")"
# Ad-hoc HTTP server (no config needed)
mcporter call https://api.example.com/mcp.fetch url=https://example.com
# Ad-hoc stdio server
mcporter call --stdio "bun run ./server.ts" scrape url=https://example.com
# JSON payload
mcporter call <server.tool> --args '{"limit": 5}'
# Machine-readable output (recommended for Zorro)
mcporter call <server.tool> key=value --output json# OAuth login for a server mcporter auth <server | url> [--reset] # Manage config mcporter config list mcporter config get <key> mcporter config add <server> mcporter config remove <server> mcporter config import <path>
Config file location: `./config/mcporter.json` (override with `--config`).
For persistent server connections:
mcporter daemon start mcporter daemon status mcporter daemon stop mcporter daemon restart
# Generate a CLI wrapper for an MCP server mcporter generate-cli --server <name> mcporter generate-cli --command <url> # Inspect a generated CLI mcporter inspect-cli <path> [--json] # Generate TypeScript types/client mcporter emit-ts <server> --mode client mcporter emit-ts <server> --mode types
A self-evolving CLI agent. Most agents treat memory as an afterthought — a flat text file that grows until it's useless.
Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).
Manage Apple Reminders via remindctl CLI (list, add, complete, delete).
Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture.
Delegate coding tasks to Claude Code (Anthropic's CLI agent). Use for building features, refactoring, PR reviews, and iterative coding. Requires the claude CLI…
Delegate coding tasks to OpenAI Codex CLI agent. Use for building features, refactoring, PR reviews, and batch issue fixing. Requires the codex CLI and a git…