INDIVIDUAL MCP TOOL
myriade_get_query_results
Re-execute a saved Myriade query and return fresh results.
LIVE ENDPOINT
https://app.myriade.ai/mcp
Connect to this endpoint to inspect the live schema for myriade_get_query_results and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests code or command execution.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.myriade_mcp]
url = "https://app.myriade.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"myriade_mcp": {
"type": "http",
"url": "https://app.myriade.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: myriade_mcp
Remote MCP URL: https://app.myriade.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"myriade_mcp": {
"url": "https://app.myriade.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"myriade_mcp": {
"type": "http",
"url": "https://app.myriade.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "myriade_mcp",
"transport": "streamable-http",
"url": "https://app.myriade.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
myriade_list_databases— List databases configured in Myriade (paginated, sorted by name).myriade_get_database_info— Get detailed information about a specific database connection.myriade_list_tables— List tables in a database (paginated, sorted by database/schema/name).myriade_get_table_schema— Get the column-level schema for a specific table.myriade_query— Execute a read-only SQL query against a database.myriade_sample_data— Get sample rows from a table to understand the data.myriade_search_catalog— Search the data catalog for tables, columns, or terms by name/description.myriade_read_asset— Get detailed information about a catalog object (table, column, schema, or glossary term — assets and terms share one id space).