Home / MCP / Minium MCP Server
Provides an MCP server surface to interact with Minium tooling via MCP clients
Configuration
View docs{
"mcpServers": {
"minium_mcp": {
"command": "npx",
"args": [
"@modelcontextprotocol/inspector",
"uv",
"--directory",
"/Users/yourname/Documents/3.Roy/python/minium_mcp_server/webapi",
"run",
"minium-mcp-server"
],
"env": {
"YOUR_ENV_VAR": "VALUE"
}
}
}
}You can run the Minium MCP Server to expose MCP endpoints that let clients discover, query, and interact with its capabilities. This server enables you to integrate tooling and workflows by providing a consistent MCP surface you can connect to from your MCP client.
To use the server from an MCP client, start it using the runtime command that runs the server through the inspector tool. This starts the Minium MCP Server in your local environment so your client can connect and send requests for data and actions the server exposes.
Prerequisites: you need Node.js and npm installed on your system.
Step 1: Ensure Node.js and npm are available on your system by checking their versions.
Step 2: Do not install this server globally; you will run it via a local npx command when starting. If you want to confirm the capability, you can run a quick dry run with npx.
Step 3: Run the server using the inspector-based command provided below.
Runtime command to start the server via inspector: you will execute this in your shell to launch the Minium MCP Server locally.
npx @modelcontextprotocol/inspector uv --directory /Users/yourname/Documents/3.Roy/python/minium_mcp_server/webapi run minium-mcp-server