CLICLI

Local

API Integration

Integrate this MCP server into your applications.

Get your API Key

You'll need to login and generate a Smithery API key to connect to this server.

Installation

Install the Smithery and MCP SDKs using npm:

npm install @smithery/sdk @modelcontextprotocol/sdk

TypeScript SDK

Use Smithery's TypeScript SDK to connect to this MCP server:

typescript

import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"

const transport = new StdioClientTransport({
  "command": "uvx",
  "args": [
    "cli-mcp-server"
  ],
  "env": {
    "ALLOWED_DIR": "/your/desired/dir",
    "ALLOWED_COMMANDS": "ls,cat,pwd,echo",
    "ALLOWED_FLAGS": "-l,-a,--help,--version",
    "MAX_COMMAND_LENGTH": "1024",
    "COMMAND_TIMEOUT": "30"
  }
})

// Create MCP client
import { Client } from "@modelcontextprotocol/sdk/client/index.js"

const client = new Client({
	name: "Test client",
	version: "1.0.0"
})
await client.connect(transport)

// Use the server tools with your LLM application
const tools = await client.listTools()
console.log(`Available tools: ${tools.map(t => t.name).join(", ")}`)

// Example: Call a tool
// const result = await client.callTool("tool_name", { param1: "value1" })

Configuration Schema

Full JSON Schema for server configuration:

json
{
  "type": "object",
  "required": [
    "allowedDir"
  ],
  "properties": {
    "allowedDir": {
      "type": "string",
      "description": "Base directory for command execution"
    },
    "allowedFlags": {
      "type": "string",
      "default": "-l,-a,--help",
      "description": "Comma-separated list of allowed flags"
    },
    "commandTimeout": {
      "type": "number",
      "default": 30,
      "description": "Command execution timeout in seconds"
    },
    "allowedCommands": {
      "type": "string",
      "default": "ls,cat,pwd",
      "description": "Comma-separated list of allowed commands"
    },
    "maxCommandLength": {
      "type": "number",
      "default": 1024,
      "description": "Maximum command string length"
    }
  }
}