OmniSignal MCP Server
OfficialAllows exporting the generated content calendar to Google Calendar for scheduling and syncing.
Provides fresh Instagram post data on any query, enabling competitive analysis and content research.
Allows exporting the generated content calendar to Notion for planning and collaboration.
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., "@OmniSignal MCP ServerWhat's moving in my market this week?"
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.
OmniSignal MCP Server
Live market intelligence and AI content strategy for your brand — straight into your AI assistant.
OmniSignal turns your brand profile into a data-driven social content operation: it collects fresh data from your niche (competitors, trends, audience), generates a multi-week content calendar, and surfaces daily signals (trends, competitor moves, opportunities). The entire backend is exposed as a remote MCP (Model Context Protocol) server — 38 tools your agent can call natively from Claude Code, Claude Desktop, Cursor, or any MCP-compatible client.
ChatGPT and Claude are trained on stale snapshots. Same model, same prompt — the only difference is whether your agent can see this week.
Server details
Transport | Streamable HTTP (single endpoint, stateless) |
Server URL |
|
Auth |
|
Tools | 38 (onboarding, strategy, signals, calendar, data, credits) |
Docs | |
Website |
Related MCP server: social-neuron
Quickstart
1. Get an API key
Sign up at app.omnisignal.ai → Profile → MCP / API access → create a key (omni_sk_..., shown once). Keys carry read + generate scopes, up to 10 active keys, revocable anytime. New accounts get 50 free starter credits.
2. Connect your client
Claude Code (CLI):
claude mcp add --transport http omnisignal \
https://mcp.omnisignal.ai/mcp \
--header "Authorization: Bearer omni_sk_YOUR_KEY_HERE"Claude Code (plugin, from this repo):
/plugin marketplace add omnisignal-ai/omnisignal-mcp
/plugin install omnisignal@omnisignalThen set the OMNISIGNAL_API_KEY environment variable to your key — the plugin wires the header for you.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"omnisignal": {
"type": "streamable-http",
"url": "https://mcp.omnisignal.ai/mcp",
"headers": { "Authorization": "Bearer omni_sk_YOUR_KEY_HERE" }
}
}
}Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"omnisignal": {
"type": "streamable-http",
"url": "https://mcp.omnisignal.ai/mcp",
"headers": { "Authorization": "Bearer omni_sk_YOUR_KEY_HERE" }
}
}
}Any MCP client: POST to the server URL with header Authorization: Bearer omni_sk_YOUR_KEY_HERE and Accept: application/json, text/event-stream.
3. Let the agent onboard you
Say: "Set up my OmniSignal workspace." The server ships with a built-in onboarding playbook — the agent checks readiness, collects your brand profile conversationally, analyzes your website, and kicks off your first strategy generation.
What you can do with it
Monday market brief — "What's moving in my market this week?" → fresh scan + a sourced brief of trends, competitor moves, and opportunities.
Battlecards / competitive response — sourced gap analysis of what a competitor covers that you don't, with immediate actions.
Weekly planning — walk this week's content calendar, playbooks included; A/B hook variants; mark posts published.
Export anywhere — the calendar as CSV / ICS / JSON into Notion, Google Calendar, or a scheduler.
Deep data pulls — fresh LinkedIn / Twitter / Instagram posts on any query when the agent needs raw material.
Tool overview (38 tools)
Free tools are always free; paid tools require the generate scope and credits. Agents are instructed (via the server's built-in instructions) to check credits_get_pricing / credits_get_balance before running paid calls.
Group | Tools | Price |
Onboarding |
| Free |
Profile & strategy reads |
| Free |
Strategy generation |
| 150 / 8 / 12 cr |
Signals |
| 25 cr scan, 5 cr/list window, 10 cr generate/discover |
Calendar |
| 5 cr day / 15 cr week / 3 cr post / 3 cr search / 8 cr variants / 5 cr export |
Data |
| 2–10 cr |
Credits meta |
| Free |
Design notes: async jobs (strategy_generate, signals_scan) return a job id to poll and auto-refund on failure; responses are chunked for LLM context (signal windows of 10, calendar day-by-day with a week bulk discount); paid mutations are idempotent; per-user daily spend cap.
Pricing
1 credit = $0.15, metered to Stripe on every paid call.
Package | Price/mo | Credits | Effective $/cr |
Starter | $25 | 250 | $0.10 |
Creator | $49 | 550 | $0.089 |
Pro | $99 | 1,200 | $0.083 |
Team | $199 | 2,600 | $0.077 |
PAYG | — | $0.15/cr, billed daily in arrears | $0.15 |
50 free starter credits on the free/PAYG tier.
Monthly packages never hard-stop: overage auto-bills in round-up blocks at the package rate.
Any MCP package also unlocks the full OmniSignal dashboard on the same account.
Links
Product site: omnisignal.ai
Dashboard: app.omnisignal.ai
Live MCP docs: /mcp/docs
This repo also contains
server.json(Official MCP Registry manifest) and a Claude Code plugin marketplace manifest (.claude-plugin/marketplace.json).
License
MIT — see LICENSE. The hosted OmniSignal service itself is commercial; this repo contains listing metadata and documentation only.
This server cannot be installed
Maintenance
Related MCP Servers
- Flicense-quality-maintenanceAn MCP server that monitors 12 Australian SMB intelligence sources to analyze market signals and provide structured data for content strategy agents. It enables users to track regulatory changes, AI trends, and business data through automated signal grading and Slack integration.Last updated
- Alicense-qualityAmaintenance52-tool MCP server for AI-powered social media management. Create content with 35+ AI models, distribute to multiple platforms, track analytics, and optimize with closed-loop learning.Last updated9764MIT
- Alicense-qualityCmaintenanceMCP server for trend-pulse, an agentic trend intelligence platform that fetches and analyzes trending topics from 37 sources, provides search, historical data, and lifecycle prediction via 29 tools.Last updated52MIT
- Flicense-qualityAmaintenanceA remote Model Context Protocol (MCP) server for real-time cryptocurrency and stock market analysis. Provides AI-powered market intelligence tools with 9 theory-based analysis engines, multi-chain DEX discovery, and enterprise features.Last updated
Related MCP Connectors
Cloud MCP for project data, analytics, research, content planning, media generation, and growth.
Social media analytics, video analysis, and competitor intel for any MCP-compatible AI agent.
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
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/omnisignal-ai/omnisignal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server