Installation & Configuration
Coding Tools MCP is a Python package that installs a single CLI command:coding-tools-mcp.
Installation
>=3.11 and declares PyJWT as a runtime dependency. Development extras are available through coding-tools-mcp[dev]; image support declares coding-tools-mcp[image].
Core CLI options
Transports
HTTP
/mcp. The server also exposes metadata at /.well-known/mcp.json and /.well-known/mcp/server-card.json.
Stdio
Authentication
Local loopback HTTP can run without auth. Non-loopback binding is rejected unless one of these is configured:--auth-tokenorCODING_TOOLS_MCP_AUTH_TOKEN--oauth-modeorCODING_TOOLS_MCP_OAUTH_MODE=1CODING_TOOLS_MCP_AUTH_MODE=noauthfor an explicit no-auth deployment behind another trusted boundary
CODING_TOOLS_MCP_AUTH_MODE values are bearer, noauth, and oauth.
OAuth settings are read from:
CODING_TOOLS_MCP_OAUTH_CLIENT_IDCODING_TOOLS_MCP_OAUTH_CLIENT_SECRETCODING_TOOLS_MCP_OAUTH_PASSWORDCODING_TOOLS_MCP_SERVER_URLCODING_TOOLS_MCP_OAUTH_TOKEN_SECRETCODING_TOOLS_MCP_OAUTH_TOKEN_TTL
Tool profiles
Permission modes
Use
trusted for normal local development tasks that need package managers, test runners, or shell features. Use dangerous only when an outer sandbox already provides the real isolation boundary.
Command environment
exec_command inherits a controlled environment. --shell-env-inherit accepts:
core: inherit core variables such as PATH and locale values.all: inherit the process environment subject to filtering.none: start from an empty baseline except explicit values.
exec_command.env; secret-looking names, values, and risky loader/startup variables are filtered in safe and trusted modes.
Runtime files
The server uses a runtime root namedcoding-tools-mcp under the system temp directory unless CODING_TOOLS_MCP_RUNTIME_ROOT is set. This root is used for runtime-managed home/tmp areas and command sessions.