OmniSignal.ai – Live market intelligence & AI content strategy: trends, competitor moves, content calendar.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/omnisignal-ai/omnisignal-mcp{
"mcpServers": {
"omnisignal-mcp": {
"command": "node",
"args": ["/path/to/omnisignal-mcp/dist/index.js"]
}
}
}MCP Servers overview
# OmniSignal MCP Server
[](https://glama.ai/mcp/servers/omnisignal-ai/omnisignal-mcp)
**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** | `https://mcp.omnisignal.ai/mcp` |
| **Auth** | `Authorization: Bearer omni_sk_...` (API key from the dashboard) |
| **Tools** | 38 (onboarding, strategy, signals, calendar, data, credits) |
| **Docs** | [Live API docs](https://mcp.omnisignal.ai/mcp/docs) · [Markdown for agents](https://mcp.omnisignal.ai/mcp/docs.md) |
| **Website** | [omnisignal.ai](https://www.omnisignal.ai) |
## Quickstart
### 1. Get an API key
Sign up at [app.omnisignal.ai](https://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):**
```bash
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@omnisignal
```
Then set the `OMNISIGNAL_API_KEY` environment variable to your key — the plugin wires the header for you.
**Claude Desktop** (`claude_desktop_config.json`):
```json
{
"mcpServers": {
"omnisignal": {
"type": "streamable-http",
"url": "https://mcp.omnisignal.ai/mcp",
"headers": { "Authorization": "Bearer omni_sk_YOUR_KEY_HERE" }
}
}
}
```
**Cursor** (`~/.cursor/mcp.json`):
```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 | `onboarding_get_readiness`, `onboarding_update_profile`, `onboarding_update_goals`, `onboarding_update_social_handles`, `onboarding_update_brand_voice`, `onboarding_update_content`, `onboarding_connect_platform`, `onboarding_analyze_website` | Free |
| Profile & strategy reads | `profile_get`, `strategy_get_latest`, `strategy_list`, `strategy_get_status`, `strategy_get_swot`, `strategy_get_themes` | Free |
| Strategy generation | `strategy_generate` (async), `strategy_analyze_post_idea`, `strategy_competitor_gap` | 150 / 8 / 12 cr |
| Signals | `signals_scan` (async) + `signals_scan_status` (free), `signals_list`, `signals_generate`, `signals_dismiss`, `signals_snooze`, `sources_list` (free), `sources_discover` | 25 cr scan, 5 cr/list window, 10 cr generate/discover |
| Calendar | `calendar_get_day`, `calendar_get_week`, `calendar_get_upcoming` (free), `calendar_get_post`, `calendar_search_posts`, `calendar_update_post` (free), `calendar_create_variants`, `calendar_export` | 5 cr day / 15 cr week / 3 cr post / 3 cr search / 8 cr variants / 5 cr export |
| Data | `data_summary` (free), `data_collect`, `data_points_list` | 2–10 cr |
| Credits meta | `credits_get_balance`, `credits_get_pricing` | 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](https://www.omnisignal.ai)
- Dashboard: [app.omnisignal.ai](https://app.omnisignal.ai)
- Live MCP docs: [/mcp/docs](https://mcp.omnisignal.ai/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](LICENSE). The hosted OmniSignal service itself is commercial; this repo contains listing metadata and documentation only.
What people ask about omnisignal-mcp
What is omnisignal-ai/omnisignal-mcp?
+
omnisignal-ai/omnisignal-mcp is mcp servers for the Claude AI ecosystem. OmniSignal.ai – Live market intelligence & AI content strategy: trends, competitor moves, content calendar. It has 3 GitHub stars and its last recorded update is dated 2026-08-05.
How do I install omnisignal-mcp?
+
You can install omnisignal-mcp by cloning the repository (https://github.com/omnisignal-ai/omnisignal-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is omnisignal-ai/omnisignal-mcp safe to use?
+
Our security agent has analyzed omnisignal-ai/omnisignal-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains omnisignal-ai/omnisignal-mcp?
+
omnisignal-ai/omnisignal-mcp is maintained by omnisignal-ai. The last recorded GitHub activity is dated 2026-08-05, with 0 open issues.
Are there alternatives to omnisignal-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy omnisignal-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/omnisignal-ai-omnisignal-mcp)<a href="https://claudewave.com/repo/omnisignal-ai-omnisignal-mcp"><img src="https://claudewave.com/api/badge/omnisignal-ai-omnisignal-mcp" alt="Featured on ClaudeWave: omnisignal-ai/omnisignal-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!