What is the AgentCron MCP server?
Schedule tasks for later from your AI agent: reminders, delayed webhooks, recurring jobs.
How to install AgentCron
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Environment / auth
AuthorizationrequiredsecretBearer <api_key> — get a free key at https://cron.mgm-llc.org/signup
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"agentcron": {
"url": "https://cron.mgm-llc.org/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agentcron": {
"serverUrl": "https://cron.mgm-llc.org/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"agentcron": {
"type": "http",
"url": "https://cron.mgm-llc.org/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"agentcron": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://cron.mgm-llc.org/mcp"
]
}
}
}Claude Code
claude mcp add --transport http agentcron https://cron.mgm-llc.org/mcpRelated MCP servers
AgentPing
Active
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
0
View repository →TypeScript
MIT