Routine Model Context Protocol (MCP) Server

This is the Routine Model Context Protocol (MCP) server.

Usage

  1. Run the Routine application for the MCP server to work.
  2. Run this MCP server with npx routine-mcp-server or configure it in your favorite MCP client.

Claude Desktop

For Claude Desktop, refer to https://modelcontextprotocol.io/quickstart/user

In particular, your file claude_desktop_config.json should look something like that:

{
  "mcpServers": {
    "routine": {
      "command": "npx",
      "args": ["routine-mcp-server"]
    }
  }
}

Development

# Install dependencies
yarn

# Build the project
yarn build

Then install the MCP server:

  • Command: full path to node executable
  • Arguments: full path to ./dist/index.js

Claude Desktop

For Claude Desktop, refer to https://modelcontextprotocol.io/quickstart/user

In particular, your file claude_desktop_config.json should look something like that:

{
  "mcpServers": {
    "routine": {
      "command": "/absolute/path/to/bin/node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"]
    }
  }
}

Running the MCP Server (development)

# Start the server
yarn start

The server communicates via stdin/stdout, following the MCP protocol. You can interact with it by sending JSON requests to its stdin and reading responses from stdout.

Related in Productivity - Secure MCP Servers

ServerSummaryActions
Minimax MCP ToolsView
FiderA Model Context Protocol (MCP) server that provides tools to interact with Fider - an open-source cu...View
YouTrackAn MCP (Model Context Protocol) server that provides YouTrack REST API access to AI agents like GitH...View
MCP OrchestratorNo documentation available.View
Joplin MCP ServerA Model Context Protocol (MCP) Server for Joplin that enables note access through the Model Context...View
macOS Remote ControlThe first open-source MCP server that enables AI to fully control remote macOS systems, now with a w...View