We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aybelatchane/mcp-server-terminal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Smithery configuration for Terminal MCP Server
# See: https://smithery.ai/docs/config
name: Terminal MCP Server
description: |
Playwright for terminals - AI agents interact with TUI/CLI apps through
structured Terminal State Tree representation. Detect menus, tables, buttons,
and forms in terminal applications. Navigate with arrow keys, type text,
and click on UI elements by reference ID.
author: Ayoub Belayoub
repository: https://github.com/aybelatchane/mcp-server-terminal
license: MIT
keywords:
- terminal
- tui
- cli
- automation
- accessibility
- playwright
- screen-reader
startCommand:
type: stdio
configSchema:
type: object
properties:
headless:
type: boolean
description: Run in headless mode without visual terminal windows
default: false
required: []
commandFunction: |
(config) => ({
command: "npx",
args: config.headless
? ["-y", "mcp-server-terminal", "--headless"]
: ["-y", "mcp-server-terminal"],
env: {
DISPLAY: ":0"
}
})