- Home
- MCP servers
- Make
Make
- other
1
GitHub Stars
other
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"rorymb-make_mcp": {
"command": "/Users/rmbutler/.local/bin/uvx",
"args": [
"--from",
"git+https://github.com/RoryMB/Make_MCP@main",
"make_mcp"
]
}
}
}Make_MCP is an MCP server designed to help you create and manage MCP servers by generating artifacts and reusable resources. It helps you assemble the components you need to deploy MCP-enabled services and tools quickly.
How to use
You interact with Make_MCP through an MCP client that can load and run MCP servers. First, ensure Make_MCP is configured in your MCP client so the client can locate and launch the local server definitions. Use the Make_MCP server to generate artifacts that you can attach to messages or downloads for further integration. You can either run Make_MCP as a tool to get a ready-made server, or you can add a new server to your client that Make_MCP helps you create.
How to install
Prerequisites: you need an environment capable of running the MCP client and compatible runtime tooling (for example, a local runtime like uvx/uv). You also need a working Python/Node environment if your setup involves running scripts directly. Prepare your system so you can install and run the local MCP server artifacts.
-
Install the local MCP runtime you will use to run MCP servers (for example uvx/uv) and ensure it is accessible in your system PATH.
-
Open the client settings for your MCP environment and add the following MCP server configuration snippet to point to the local Make_MCP server you will use. This configuration makes the client load the Make_MCP server as a local runtime artifact.
{
"mcpServers": {
"make_mcp": {
"command": "/Users/rmbutler/.local/bin/uvx",
"args": ["--from", "git+https://github.com/RoryMB/Make_MCP@main", "make_mcp"]
}
}
}
Additional setup for creating a new MCP server
If you want to create a new MCP server with Make_MCP, you will typically add another server entry to your client configuration after Make_MCP helps you generate the artifact. The new server entry should point to the generated Python/JavaScript file or script that Make_MCP produces and includes any required environment variables.
When you add a new server, ensure the arguments point to the generated file path and include any needed environment variables in the env section.
{
"mcpServers": {
"make_mcp": {
"command": "/Users/rmbutler/.local/bin/uvx",
"args": ["--from", "git+https://github.com/RoryMB/Make_MCP@main", "make_mcp"]
},
"new_server": {
"command": "/Users/rmbutler/.local/bin/uvx",
"args": ["run", "/Users/rmbutler/Downloads/new_server.py"],
"env": {}
}
}
}
Available tools
how_to_make_mcp
A built-in tool that provides documentation on MCP servers and a small example server script to demonstrate how MCP components fit together.