@fliq/mcp
Supports creating Slack alert channels to be notified on permanent job failures.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@fliq/mcpSchedule a one-time HTTP job to https://example.com/webhook at 2025-01-15T10:00:00Z"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@fliq/mcp
A Model Context Protocol (MCP) server for Fliq — the Postgres-native HTTP job scheduler.
It lets any MCP-capable AI agent (Claude Desktop, Claude Code, Cursor, custom
agents) schedule and manage HTTP jobs, recurring cron schedules, rate-limited
buffers, and alert channels — and inspect usage and billing — in natural
language. Under the hood every tool is a single call to the Fliq REST API
(https://api.fliq.sh) authenticated with one of your fliq_sk_* API tokens.
Durable one-off + cron HTTP jobs with retries, backoff and crash recovery.
Buffers: outbound rate-limiting so an agent can hammer a 429-prone API (Stripe, Shopify, an LLM) without getting throttled.
Replay failed jobs/items, get per-attempt history, watch usage and balance.
Distributed over stdio — add it to your agent in one config line.
Get an API token
In the Fliq dashboard → Settings → API tokens, create a token. It looks like
fliq_sk_… and is shown once. That token is the only credential the server
needs.
Related MCP server: cron-mcp
Install / run
No install needed — run it on demand with npx:
FLIQ_API_TOKEN=fliq_sk_xxx npx @fliq/mcpOr install globally:
npm install -g @fliq/mcp
FLIQ_API_TOKEN=fliq_sk_xxx fliq-mcpIt speaks MCP over stdio — you normally don't run it by hand; your MCP client launches it (see the config blocks below).
Configuration (environment)
Variable | Required | Default | Description |
| yes | — | Your |
| no |
| Override the API base URL (e.g. self-hosted). |
Client configuration
Claude Desktop
Edit claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,
Windows: %APPDATA%\Claude\claude_desktop_config.json), then restart Claude:
{
"mcpServers": {
"fliq": {
"command": "npx",
"args": ["-y", "@fliq/mcp"],
"env": {
"FLIQ_API_TOKEN": "fliq_sk_xxx"
}
}
}
}Claude Code
claude mcp add fliq \
--env FLIQ_API_TOKEN=fliq_sk_xxx \
-- npx -y @fliq/mcp(Add --scope user to make it available in every project. To point at a
self-hosted Fliq, also pass --env FLIQ_API_URL=https://api.your-host.)
Cursor
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{
"mcpServers": {
"fliq": {
"command": "npx",
"args": ["-y", "@fliq/mcp"],
"env": {
"FLIQ_API_TOKEN": "fliq_sk_xxx"
}
}
}
}Tools
Each tool is one REST call with a typed (zod) input schema. Non-2xx responses become clear tool errors — e.g. 402 = out of credits, 409 = not in a replayable state, 401 = bad/revoked token.
Jobs
Tool | Description |
| Schedule a one-off HTTP job at an RFC3339 time, with retries. |
| Fetch a job by id (status + execution timestamps). |
| List jobs, optionally filtered by status; cursor-paginated. |
| Cancel a pending job. |
| Re-run a permanently-failed job as a fresh pending job. |
| List every execution attempt (status code, error, timing). |
Schedules (cron)
Tool | Description |
| Create a recurring schedule from a cron expression. |
| List schedules; cursor-paginated. |
| Pause a schedule (stops firing). |
| Resume a paused schedule. |
| Permanently delete a schedule. |
Buffers (outbound rate limiting)
Tool | Description |
| Create a rate-limited outbound queue (deliveries/sec). |
| List buffers; cursor-paginated. |
| Enqueue one item; drains respecting the rate limit. |
| Aggregated status breakdown + success rate. |
| Re-run a failed item onto the tail of the buffer. |
Alerts
Tool | Description |
| List channels notified on permanent failures. |
| Create a |
Analytics & billing
Tool | Description |
| Execution totals, success rate, avg/p95 duration over N days. |
| Daily job + buffer execution buckets, balance, plan. |
| Current credit balance, plan, daily limit. |
How billing works
Each execution attempt (including retries) costs one credit. schedule_job
and replay_job pass the same credit gate; if you're out of credits they return
a 402 tool error. Use get_balance / usage_stats to keep an eye on it.
Development
npm install
npm run build # tsc → dist/index.js (with shebang, executable)
npm start # run the built server (needs FLIQ_API_TOKEN)Source layout:
src/client.ts— thin fetch wrapper: attaches the bearer token, builds query strings, maps non-2xx to status-awareFliqApiErrors.src/index.ts— the MCP server: reads config from env, registers all tools.
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables creation and management of scheduled tasks with interval, cron, or one-time triggers. Persists tasks in SQLite and supports MCP sampling to automatically invoke AI agents when schedules trigger.283MIT
- AlicenseAqualityAmaintenanceEnables AI agents to parse, validate, explain, and preview cron expressions, surfacing common silent bugs before deployment.4108MIT

smplkit MCP Serverofficial
AlicenseAqualityBmaintenanceEnables AI agents to create, run, and monitor scheduled HTTP jobs on the smplkit platform via natural language commands.829MIT- AlicenseNot gradedqualityBmaintenanceSchedule any prompt on any cron expression; when it fires, we POST the job to your callback URL. No LLM in the stack.MIT
Related MCP Connectors
Schedule tasks for later from your AI agent: reminders, delayed webhooks, recurring jobs.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fliq-sh/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server