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

Myriade

ai.myriade/myriade
10 toolsHTTPregistry active
Summary

Connects Claude directly to your data warehouse through Myriade's AI analyst layer, which reverse-engineers table relationships, validates metrics, and documents your schema automatically. You ask questions in natural language and get SQL queries run against Snowflake, BigQuery, Databricks, Postgres, or other supported warehouses. The server uses Myriade's catalog to ground answers in actual table structure and business logic, so you're querying validated data models instead of raw tables. Useful when you want Claude to answer analytical questions without writing SQL yourself or when your warehouse documentation is incomplete. Requires a Myriade account with warehouse already connected through their platform.

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.

10 tools
myriade_list_databasesList databases configured in Myriade (paginated, sorted by name). Args: limit: Maximum results to return (default 50, max 200) offset: Number of results to skip for pagination Returns paginated database connections with their IDs, names, engines, and descriptions. Use the data...2 params

List databases configured in Myriade (paginated, sorted by name). Args: limit: Maximum results to return (default 50, max 200) offset: Number of results to skip for pagination Returns paginated database connections with their IDs, names, engines, and descriptions. Use the data...

Parameters* required
limitinteger
Maximum results to return (1-200)default: 50
offsetinteger
Number of results to skip for paginationdefault: 0
myriade_get_database_infoGet detailed information about a specific database connection. Args: database_id: The UUID of the database (from myriade_list_databases) Returns information about the database including its name, engine type, description, write mode, and any AI memory notes.1 params

Get detailed information about a specific database connection. Args: database_id: The UUID of the database (from myriade_list_databases) Returns information about the database including its name, engine type, description, write mode, and any AI memory notes.

Parameters* required
database_idstring
myriade_list_tablesList tables in a database (paginated, sorted by database/schema/name). Args: database_id: The UUID of the database (from myriade_list_databases) limit: Maximum tables to return (default 100, max 500) offset: Number of tables to skip for pagination Returns a flat, paginated lis...3 params

List tables in a database (paginated, sorted by database/schema/name). Args: database_id: The UUID of the database (from myriade_list_databases) limit: Maximum tables to return (default 100, max 500) offset: Number of tables to skip for pagination Returns a flat, paginated lis...

Parameters* required
limitinteger
Maximum tables to return (1-500)default: 100
offsetinteger
Number of tables to skip for paginationdefault: 0
database_idstring
myriade_get_table_schemaGet the column-level schema for a specific table. Args: database_id: The UUID of the database (from myriade_list_databases) table_name: Name of the table to inspect schema_name: Optional schema name to disambiguate tables with the same name in different schemas Returns column...3 params

Get the column-level schema for a specific table. Args: database_id: The UUID of the database (from myriade_list_databases) table_name: Name of the table to inspect schema_name: Optional schema name to disambiguate tables with the same name in different schemas Returns column...

Parameters* required
table_namestring
database_idstring
schema_namevalue
myriade_queryExecute a read-only SQL query against a database. The query is executed in read-only mode — write operations (INSERT, UPDATE, DELETE, DROP, etc.) are blocked. Args: database_id: The UUID of the database (from myriade_list_databases) sql: The SQL query to execute Returns up to...2 params

Execute a read-only SQL query against a database. The query is executed in read-only mode — write operations (INSERT, UPDATE, DELETE, DROP, etc.) are blocked. Args: database_id: The UUID of the database (from myriade_list_databases) sql: The SQL query to execute Returns up to...

Parameters* required
sqlstring
database_idstring
myriade_sample_dataGet sample rows from a table to understand the data. Args: database_id: The UUID of the database (from myriade_list_databases) table_name: Name of the table to sample schema_name: Schema containing the table limit: Number of rows to return (max 20) database_name: Optional data...5 params

Get sample rows from a table to understand the data. Args: database_id: The UUID of the database (from myriade_list_databases) table_name: Name of the table to sample schema_name: Schema containing the table limit: Number of rows to return (max 20) database_name: Optional data...

Parameters* required
limitinteger
Number of rows to return (1-20)default: 10
table_namestring
database_idstring
schema_namestring
database_namevalue
myriade_search_catalogSearch 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. Args: database_id: The UUID of the database (from myriade_list_databases) text: Search query — short and focuse...4 params

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. Args: database_id: The UUID of the database (from myriade_list_databases) text: Search query — short and focuse...

Parameters* required
textstring
limitinteger
Maximum results to return (1-50)default: 20
asset_typevalue
database_idstring
myriade_read_assetGet detailed information about a catalog asset (table, column, schema). Returns the asset's description, tags, status, columns (for tables), sample data, parent hierarchy, and activity feed. Args: database_id: The UUID of the database (from myriade_list_databases) asset_id: Th...2 params

Get detailed information about a catalog asset (table, column, schema). Returns the asset's description, tags, status, columns (for tables), sample data, parent hierarchy, and activity feed. Args: database_id: The UUID of the database (from myriade_list_databases) asset_id: Th...

Parameters* required
asset_idstring
database_idstring
myriade_update_assetUpdate a catalog asset's documentation. Args: database_id: The UUID of the database (from myriade_list_databases) asset_id: The UUID of the asset to update description: New description (replaces existing). Auto-sets status to "draft" if status is null. ai_suggestion: Propose a...6 params

Update a catalog asset's documentation. Args: database_id: The UUID of the database (from myriade_list_databases) asset_id: The UUID of the asset to update description: New description (replaces existing). Auto-sets status to "draft" if status is null. ai_suggestion: Propose a...

Parameters* required
statusvalue
tag_idsvalue
asset_idstring
database_idstring
descriptionvalue
ai_suggestionvalue
myriade_askAsk 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. This is the most powerful tool — use it for complex analytical...2 params

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. This is the most powerful tool — use it for complex analytical...

Parameters* required
questionstring
database_idstring
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
AI & LLM ToolsData & Analytics
Registryactive
TransportHTTP
UpdatedMay 7, 2026
Open website

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f