mcpbeat Sign in

Myriade MCP Server

answering

Myriade is answering right now. Last checked 6 min ago. It exposes 19 tools.

Explore and query your data warehouse through Myriade's AI data analyst agent.

Uptime history 47 days of history · worst day 97%
47 days agonow
100.0%
Uptime 24h
92 of 92 checks
19
Tools
read from the server
280 ms
Response time
average over 24h
open, no key
Access
streamable-http

What changed 15

Every tool that appeared, vanished or quietly changed what it asks for. Recorded since 24 August 2026. No other catalogue keeps this.

8 Sep a tool description was rewritten myriade_monitoring_overview
1 Sep 4 tool descriptions were rewritten myriade_ask, myriade_get_table_schema, myriade_list_tables and 1 more
1 Sep a tool changed the parameters it asks for myriade_query
1 Sep a tool appeared myriade_get_answer
25 Aug 6 tools appeared myriade_get_check, myriade_list_reports, myriade_monitoring_overview and 3 more
25 Aug a tool description was rewritten myriade_ask
24 Aug a tool description was rewritten myriade_ask

Myriade missed one check this week

Everything else answered, so this is steady rather than shaky. We check every 15 minutes, which is how a one-off gets told apart from the start of a pattern, and how you hear about the next one within the hour instead of from your users.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 6 min ago.

run in your terminal
claude mcp add myriade --transport http https://app.myriade.ai/mcp/
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "myriade": {
      "url": "https://app.myriade.ai/mcp/"
    }
  }
}
~/.codex/config.toml
[mcp_servers.myriade]
url = "https://app.myriade.ai/mcp/"
.cursor/mcp.json
{
  "mcpServers": {
    "myriade": {
      "url": "https://app.myriade.ai/mcp/"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "myriade": {
      "url": "https://app.myriade.ai/mcp/"
    }
  }
}

Available tools 19

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

myriade
myriade_ask
Ask a natural language question about a database using Myriade's data analyst agent. The agent will explore the database schema, search the catalog, run SQL queries, and analyze the results to answer your question. Use this for complex analytical questions that require multiple steps; for simple schema lookups or direct SQL, prefer the other tools. The run executes in the background as a regular Myriade conversation (visible in the web UI). If it finishes quickly the answer is returned directly; otherwise the tool returns ``{"status": "running", "conversation_id": ...}`` — poll myriade_get_answer with that id to retrieve the result. Long analytical questions are expected to take several minutes. Note: the agent has access to catalog write operations (create/update assets, tags, terms) — it may modify catalog state to record findings. It can also read, create and edit reports (ask it to "write a report on ..." or "update report <id> with ..."). Use myriade_query directly for strictly read-only inspection. Requires AI_PROVIDER and the corresponding API key (e.g. AI_PROVIDER=anthropic + ANTHROPIC_API_KEY).
myriade_get_answer
Retrieve the result of a myriade_ask run. Returns ``{"status": "completed", "answer": ...}`` once the analyst agent has answered, or ``{"status": "running"}`` while it is still working — keep polling in that case. ``{"status": "failed"}`` / ``{"status": "quota_exceeded"}`` carry the run's error. ``{"status": "no_answer"}`` means the run is gone without a recorded answer (agent stopped silently, or the server restarted): start a new myriade_ask run.
myriade_get_check
Get a monitoring check (name, SQL, severity, cadence, status) and its most recent run results, newest first. On governed databases the SQL and evidence rows are redacted unless you manage the database or authored the proposal.
myriade_get_database_info
Get detailed information about a specific database connection. Returns information about the database including its name, engine type, description, write mode, and any AI memory notes.
myriade_get_query_results
Re-execute a saved Myriade query and return fresh results. The query's SQL always re-runs under the caller's governance policies (table permissions, column masking) — results are never served from Myriade's cached snapshot. Prefer this over myriade_query for recurring metrics (dashboards, cockpits): the SQL stays governed in Myriade instead of travelling through prompts. Write statements are blocked. Returns up to 50 rows with column metadata, same shape as myriade_query.
myriade_get_table_schema
Get the column-level schema for a specific table. Returns column names, data types, and descriptions for the table, plus the SQL `dialect` to use with myriade_query on this database. When the name is ambiguous across schemas, the candidates are returned under `matches` instead — pass `schema_name` to pick one. Raises if the user has no access to the table under governance.
myriade_list_databases
List databases configured in Myriade (paginated, sorted by name). Returns paginated database connections with their IDs, names, engines, and descriptions. Use the database ID with other tools.
myriade_list_reports
List or search reports (documents) written in Myriade. Without ``query`` returns the most recently updated reports first; with ``query`` returns the best matches first. Only reports the caller may see are returned. Read one with myriade_read_report.
myriade_list_tables
List tables in a database (paginated, sorted by database/schema/name). Returns a flat, paginated list of tables. Each item has database_name, schema, and name fields. The response's `dialect` is the SQL dialect to use with myriade_query on this database.
myriade_monitoring_overview
Snapshot of a database's monitoring board: check count, standing alerts (open / acknowledged / known) with their headlines, recent notifications and triage notes, followed by the open alerts as JSON — each with its investigation and evidence while they fit, then as listing lines, with ``shown`` / ``total`` / ``detailed`` saying which. Alert ids feed myriade_triage_alert; check ids feed myriade_get_check. Investigation details are redacted unless you manage the database.
myriade_propose_check
Propose a monitoring check for the user to review in Myriade. This creates a PROPOSAL, never an active check: nothing runs until a database owner or org admin accepts it in the app. The SQL is test-run once under your governance context to validate it. Contract for ``check_sql``: it MUST return rows ONLY when something is wrong (zero rows = healthy) and use relative time (``now() - interval``), never absolute dates. Minimum cadence is 5 minutes. Names are unique per database — read myriade_monitoring_overview before proposing a near-duplicate.
myriade_query
Execute a read-only SQL query against a database. Write the SQL in the dialect of the target database's engine — see the `dialect` field returned by myriade_list_tables and myriade_get_table_schema, or the engine in myriade_list_databases. Write operations (INSERT, UPDATE, DELETE, DROP, etc.) are blocked. Returns up to 50 rows of results with column metadata. Successful queries are saved in Myriade; the response's `query_id` can be replayed later with myriade_get_query_results without resending SQL.
myriade_read_asset
Get detailed information about a catalog object (table, column, schema, or glossary term — assets and terms share one id space). Returns the asset's description, tags, status, columns (for tables), sample data, parent hierarchy, and activity feed; for a glossary term, its definition, synonyms, related terms, and activity feed.
myriade_read_report
Read a report's full markdown content. Applies the same visibility rule as the web app; a report the caller may not see returns a "not found" error. To create or edit a report, use myriade_ask — the analyst agent knows how reports are structured.
myriade_request_catalog_change
Propose a catalog change for the data team to review (no edit rights needed). Creates a reviewable suggestion routed to the asset's reviewers. Does NOT change the published catalog until approved. Use this instead of ``myriade_update_asset`` when you lack edit rights or are not confident enough to write directly.
myriade_sample_data
Get sample rows from a table to understand the data. Returns a random sample of up to ``limit`` rows (max 20).
myriade_search_catalog
Search the data catalog for tables, columns, or terms by name/description. Uses fuzzy matching and full-text search. Keep queries short (1-2 words) for best results.
myriade_triage_alert
Triage an alert (requires manage access: database owner or org admin). - ``resolve``: the underlying problem is handled or gone. - ``acknowledge``: keep it standing with a ``statement`` of what is happening — only for a situation that may worsen. - ``dismiss``: false positive / expected; refused while the check still trips (it would just respawn). - ``snooze``: silence for ``hours`` with a ``statement``; reopens by itself if the check still trips afterwards. - ``reopen``: send a parked alert back to "needs action" with a ``statement`` of what is no longer covered.
myriade_update_asset
Update a catalog asset's documentation (requires edit rights). - ``description`` replaces the existing description (auto-sets status to "draft" if status is null). - ``tag_ids`` replaces all tags (accepts names or UUIDs; auto-creates missing tags). - ``status`` is "draft" (needs review) or "published". Only use "published" with high confidence. Use ``myriade_request_catalog_change`` instead when you lack edit rights or are not confident enough to write directly.

Endpoints

URLTransportStateLatencyChecked
https://app.myriade.ai/mcp/ streamable-http answering 237 ms 6 min ago

Alternatives to Myriade

same job, measured the same way
MCP Trino
by txn2

MCP server for Trino data warehouses. Query, analyze plans, and explore schemas.

local only
Moodle MCP Server Aql
by csmediapro

Query Moodle LMS data through natural language. Attach your agent to your LMS data.

115 installs/wk local only
C
Bitmovin Observability MCP
by bitmovin-mcp-analytics

Query and analyse your data from Bitmovin Observability

11 tools answering
Yandex Metrica MCP
by boxlab-ltd

Query Yandex Metrica analytics — reports, trends, metadata and raw log exports — via an AI agent.

126 installs/wk local only
Dataassist Io
by dataassistio

Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.

answering
SourceMedium
by sourcemedium

Query your SourceMedium commerce warehouse, Shopify stores, and ad accounts.

answering
Supabase
by waystation

Connect to your Supabase database to query data and schemas.

answering
I
Airbyte Agents
by airbytehq

Let AI agents query data and act across all your business apps via MCP.

answering

Myriade — questions

Answers built from our own checks of this server.

What can Myriade do?
It exposes 19 tools, read directly from the server on our last check. Among them: myriade_ask, myriade_get_answer, myriade_get_check, myriade_get_database_info, myriade_get_query_results, myriade_get_table_schema and 13 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Myriade working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 92 of 92 checks got a reply (100.0%), average response time 280 ms. The bar chart above shows every period we have measured.
How do I connect Myriade?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Myriade need an API key?
No. Myriade completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 19 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Myriade?
It answers our handshake in 280 ms on average, which is faster than 53% of all working MCP servers we measure. The comparison comes from our own checks across the whole registry, every 15 minutes.