Routine Model Context Protocol (MCP) Server
This is the Routine Model Context Protocol (MCP) server.
Usage
- Run the Routine application for the MCP server to work.
- Run this MCP server with
npx routine-mcp-serveror 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
nodeexecutable - 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.
Recommend MCP Servers 💡
@modelcontextprotocol/server-gdrive
An MCP server that integrates with Google Drive to enable listing, reading, and searching over files, automatically converting Google Workspace documents to common formats.
bittush8789/MCP
An MCP server that fetches weather data from the National Weather Service API, providing get_alerts and get_forecast tools via stdio transport.
shinichi-takayanagi/myweight-mcp-server
Connects to Health Planet API to provide weight data for MCP clients via SSE.
spotify-mcp-server
A lightweight [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server that enables AI assistants like Cursor & Claude to control Spotify playback and manage playlists.
mcp-mcp
A Meta-MCP Server that acts as a tool discovery and provisioning service for the Model Context Protocol, helping AI assistants find and utilize other MCP servers.
jpollock/wordpress-mcp
An MCP server for managing WordPress sites, content, users, taxonomies, custom post types, plugins, and themes via the REST API.