CCM
/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

Claude Code Marketplaces

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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
myriade avatar

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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

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
database_idstring
limitinteger
Maximum tables to return (1-500)default: 100
offsetinteger
Number of tables to skip for paginationdefault: 0
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
database_idstring
schema_namevalue
table_namestring
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
database_idstring
sqlstring
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
database_idstring
database_namevalue
limitinteger
Number of rows to return (1-20)default: 10
schema_namestring
table_namestring
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
asset_typevalue
database_idstring
limitinteger
Maximum results to return (1-50)default: 20
textstring
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
ai_suggestionvalue
asset_idstring
database_idstring
descriptionvalue
statusvalue
tag_idsvalue
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
database_idstring
questionstring
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
AI & LLM ToolsData & Analytics
Registryactive
TransportHTTP
UpdatedMay 7, 2026
Open website

Related AI & LLM Tools MCP Servers

View all →
ninar-ctrl avatar
Ninar AI

ai.ninar/ninar

Audit your brand's visibility across ChatGPT, Gemini, Claude, Perplexity + 6 more engines.
ai.nothumansearch avatar
Not Human Search

ai.nothumansearch/search

Search the agentic web. 4,100+ sites, 11 tools incl. check_url + verify_mcp for probe-before-use.
nudg3-ai avatar
Brand Intelligence

ai.nudg3/brand-intelligence

Query your Nudg3 brand visibility across ChatGPT, Claude, Gemini, AI Overviews, and Perplexity.
ai.optimly avatar
Scout by Optimly

ai.optimly/scout

Query the AI Brand Directory. Audit brand visibility in ChatGPT, Claude, and Gemini.
ai.pimea avatar
Pimea

ai.pimea/pimea

The hidden intelligence for AI marketing agents. Real campaign data, not LLM guesses.
ai.router avatar
370.ai — AI Gateway: Video (Seedance 2.0, Wan, HappyHorse), Image, Speech + 100+ Chat Models

ai.router/ai-gateway

One key, 100+ models — chat with any LLM and generate video, images, speech. Free trial at 370.ai.