- Home
- MCP servers
- MCP Routine
MCP Routine
- javascript
1
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks 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": {
"mquan-mcp-routine": {
"command": "npx",
"args": [
"-y",
"mcp-routine"
],
"env": {
"FILENAME": "YOUR_PATH_TO_RUTINES.json"
}
}
}
}MCP Routine lets you stitch together multi-tool actions into reusable workflows. By capturing the exact set of tools and inputs needed for a task, you can run consistent sequences without re-prompting, saving time and reducing errors across repeated operations.
How to use
You use MCP Routine by coordinating it with your MCP client. After you complete a task, you can create a new routine that records the tools used and the inputs provided. Refresh your client to pick up the new routine, then run the same sequence whenever you need to repeat the task.
How to install
Prerequisites you need installed on your system before using MCP Routine.
Install Node.js and npm from the official source for your operating system.
Add the MCP Routine connector to your MCP client by including the following JSON snippet in your client configuration.
{
"mcpServers": {
"myRoutines": {
"command": "npx",
"args": ["-y", "mcp-routine"],
"env": {
"FILENAME": "/path/to/your/mcp-routines.json"
}
}
}
}
Additional sections
Tools included with MCP Routine enable routine management and reuse of complex workflows.
Routine management tools include: create-routine, load-routines, update-routine, delete-routine.
Available tools
create-routine
Create a new routine that captures a sequence of tool calls and their inputs for reuse.
load-routines
Load existing routines into your MCP client to browse or run them.
update-routine
Modify an existing routine’s steps, inputs, or metadata.
delete-routine
Remove a routine from your collection.