CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Omnier

jessesorsa/omnier-mcp-server
6 toolsauthHTTPregistry active
Summary

Connects Claude to Omnier's sales task management system via streamable HTTP with OAuth. Exposes four core tools: read_skill loads workflow schemas and documents, query runs read-only SQL against your todo lists and documents with row-level security, action handles writes, and show_todo_list renders an interactive UI directly in chat for a specific date. The setup is straightforward: point Claude at the MCP endpoint, load the todo_list skill at session start, then ask it to create or manage your daily sales tasks. Useful when you want an AI agent to help prioritize and track sales activities pulled from your CRM, email, and calendar rather than just chatting about what you should do.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

6 tools
queryRead-only SQL against the Omnier database for the signed-in user. Use for SELECTs on structured todo lists (`todo_lists`), documents (`documents`), and related reads needed to collaborate on tasks with the user. Prefer one efficient query (JOINs, CTEs, filters). No trailing se...1 params

Read-only SQL against the Omnier database for the signed-in user. Use for SELECTs on structured todo lists (`todo_lists`), documents (`documents`), and related reads needed to collaborate on tasks with the user. Prefer one efficient query (JOINs, CTEs, filters). No trailing se...

Parameters* required
sqlstring
Raw SQL SELECT (or read-only query)
actionMutating SQL for the signed-in user: freely INSERT, UPDATE, DELETE on tables needed for structured todo lists and documents — primarily `todo_lists` and `documents`. Combine steps in one statement with CTEs and RETURNING when useful. Follow schemas and workflow rules from `rea...1 params

Mutating SQL for the signed-in user: freely INSERT, UPDATE, DELETE on tables needed for structured todo lists and documents — primarily `todo_lists` and `documents`. Combine steps in one statement with CTEs and RETURNING when useful. Follow schemas and workflow rules from `rea...

Parameters* required
sqlstring
Raw SQL for inserts/updates/deletes
read_skillLoad Omnier skill files (schema, rules, workflows) before reading or changing data. Always call this first when working with todo lists or documents. Pass only the skills you need. Without this, SQL and task semantics will be wrong.1 params

Load Omnier skill files (schema, rules, workflows) before reading or changing data. Always call this first when working with todo lists or documents. Pass only the skills you need. Without this, SQL and task semantics will be wrong.

Parameters* required
skill_namesarray
show_todo_listOpens the user's interactive todo list in the host UI. Use when the user wants to view or edit their collaborative TipTap HTML task list. Returns the latest list HTML for the signed-in user.1 params

Opens the user's interactive todo list in the host UI. Use when the user wants to view or edit their collaborative TipTap HTML task list. Returns the latest list HTML for the signed-in user.

Parameters* required
datestring
Calendar day for the list (YYYY-MM-DD). Use today if the user did not specify.
get_todo_listReturns the latest todo list HTML for the Omnier todo list UI.1 params

Returns the latest todo list HTML for the Omnier todo list UI.

Parameters* required
datestring
save_todo_listSaves TipTap HTML to the user’s latest todo_lists row.2 params

Saves TipTap HTML to the user’s latest todo_lists row.

Parameters* required
datestring
contentstring
Full TipTap HTML for todo_lists.content

Omnier

Sales to-do list for agents — the system of action your agent uses to plan, run, and record sales tasks. Turn signals from email, CRM, and meetings into a prioritized daily list you run together in chat.

  • Website: getomnier.com
  • Docs: getomnier.com/docs
  • App: app.getomnier.com

Connect via MCP

URLhttps://mcp.getomnier.com/mcp
TransportStreamable HTTP
AuthBearer token (Omnier OAuth — sign in when connecting)

Setup: Getting started

Tools

ToolRole
read_skillLoads Omnier skills (schemas, todo list workflows, documents). Call first—e.g. todo_list.
queryRead-only SQL on your workspace (todo_lists, documents). RLS scoped to you.
actionWrite SQL (create, update, delete todo lists and documents). RLS scoped to you.
show_todo_listLive interactive UI for a day's todo list in the agent chat (date: YYYY-MM-DD).

The todo list app also uses get_todo_list and save_todo_list internally (app visibility).

Quick start in Claude

  1. Add custom connector → https://mcp.getomnier.com/mcp → complete OAuth.
  2. In instructions: run read_skill(["todo_list"]) at session start.
  3. Ask: Help me setup a todo list requirements document in Omnier, then Create a todo list for today.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Sales & MarketingCommunication & MessagingFinance & Commerce
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 27, 2026
View on GitHub

Related Sales & Marketing MCP Servers

View all →
Vibe Prospecting

explorium-ai/vibeprospecting-mcp

Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more.
22
Lead Enrichment API

io.github.compuute/lead-enrichment

Curated EU AI/Sec/DevTools/Fintech B2B leads, Claude-scored. MCP+x402. Free 250/mo.
Apollo Salesforce Mapper

dev.workers.selbyventurecap.cf-worker/apollo-salesforce-mapper

Apollo->Salesforce Lead mapper. No LLM. Strict-fail required fields. PASS/REPAIR/FAIL verdict.
Company Enrichment API

io.github.br0ski777/company-enrichment

Company firmographics from domain: name, socials, tech stack, emails, phone, address
Apollo

com.mcparmory/apollo

Search and enrich contact and company data from 210M+ people and 35M+ companies
25
Mcp Gtm Tech Stack Signal Scraper

mambalabsdev/mcp-gtm-tech-stack-signal-scraper

Detects a company CRM, sequencer, and marketing automation from its public website. Clay-ready.
1