Skip to main content
Glama
127,264 tools. Last updated 2026-05-05 12:18

"namespace:com.wallet-connectors" matching MCP tools:

  • Re-deploy skills WITHOUT changing any definitions. ⚠️ HEAVY OPERATION: regenerates MCP servers (Python code) for every skill, pushes each to A-Team Core, restarts connectors, and verifies tool discovery. Takes 30-120s depending on skill count. Use after connector restarts, Core hiccups, or stale state. For incremental changes, prefer ateam_patch (which updates + redeploys in one step).
    Connector
  • Build and deploy a governed AI Team solution in one step. ⚠️ HEAVIEST OPERATION (60-180s): validates solution+skills → deploys all connectors+skills to A-Team Core (regenerates MCP servers) → health-checks → optionally runs a warm test → auto-pushes to GitHub. AUTO-DETECTS GitHub repo: if you omit mcp_store and a repo exists, connector code is pulled from GitHub automatically. First deploy requires mcp_store. After that, write files via ateam_github_write, then just call build_and_run without mcp_store. For small changes to an already-deployed solution, prefer ateam_patch (faster, incremental). Requires authentication.
    Connector
  • Creates a materialized view or stored procedure in the project's BigQuery data warehouse for data pre-aggregation. **When to use this tool:** - When the user needs to pre-aggregate data from multiple connectors (e.g., cross-channel marketing report) - When a query is too slow to run on-demand and benefits from materialization - When the user asks to "create a view", "save this as a table", "materialize this query" **Naming rules (enforced):** - Target dataset MUST be 'quanti_agg' (created automatically if it doesn't exist) - Object name MUST start with 'llm_' prefix (e.g., llm_weekly_spend) - Format: CREATE MATERIALIZED VIEW quanti_agg.llm_name AS SELECT ... **SQL format:** - CREATE MATERIALIZED VIEW: for pre-computed aggregation tables - CREATE OR REPLACE MATERIALIZED VIEW: to update an existing view - CREATE PROCEDURE: for complex multi-step transformations **Example:** CREATE MATERIALIZED VIEW quanti_agg.llm_weekly_channel_spend AS SELECT DATE_TRUNC(date, WEEK) as week, channel, SUM(spend) as total_spend FROM prod_google_ads_v2.campaign_stats GROUP BY 1, 2 **Limits:** Maximum 20 active aggregation views per project.
    Connector
  • Get live Hive network state — total agent count, open bounties, settlement velocity, active rails, and network health. No authentication required. Use this to check if Hive is live before onboarding.
    Connector
  • Searches the official Quanti documentation (docs.quanti.io) to answer questions about using the platform. **When to use this tool:** - When the user asks "how to do X in Quanti?", "what is a connector?", "how to configure BigQuery?" - When the user needs help configuring or using a connector (Google Ads, Meta, Piano, etc.) - To explain Quanti concepts: projects, connectors, prebuilds, data warehouse, tag tracker, transformations - When the user asks about the Quanti MCP (setup, overview, semantic layer) **This tool does NOT replace:** - get_schema_context: to get the actual BigQuery schema for a client project - list_prebuilds: to list pre-configured reports for a connector - get_use_cases: to find reusable analyses - execute_query: to execute SQL **Available topic filters:** connectors, data-warehouses, data-management, tag-tracker, mcp-server, transformations
    Connector
  • Retrieve a single article when you already know the EXACT article number (e.g. from a cross-reference). Do NOT call this tool repeatedly to search for provisions — use get_law_text instead to fetch the full act or a section and locate relevant articles in the text.
    Connector

Matching MCP Servers

Matching MCP Connectors

  • Verify a W3C Verifiable Credential or check a DID's trust score on the Hive network. Pass just a DID to resolve the DID document and get a trust score. Pass a credential object to verify its signature and validity.
    Connector
  • Retrieve the official consolidated text of a Swiss federal act (or a specific title/chapter) directly from Fedlex (fedlex.admin.ch). This is the PRIMARY tool for answering Swiss law questions — always start here. Fetch the full act or a specific section, then locate relevant provisions in the returned text. Prefer this over get_article unless you already know the exact article number.
    Connector
  • Searches official Apollo GraphQL documentation (Apollo GraphQL, GraphOS, Apollo Router, Apollo Client, API orchestration, MCP Server, schema design, deployment best practices, connectors, and platform usage). Returns url, slug, and markdown content excerpts. For complete page content, you MUST use the returned slug with the ApolloDocsRead tool. Use this tool when you need technical information, configuration examples, best practices, and troubleshooting guides for any Apollo GraphQL technology. Use the ApolloDocsRead tool to get all of the content for a given search result using the slug, don't use a WebSearch.
    Connector
  • Lists scheduled queries configured in the project's BigQuery. **What is a scheduled query?** A scheduled query is a SQL query automatically executed on a defined schedule in BigQuery. It is used to aggregate data, populate reporting tables, or perform recurring transformations. **When to use this tool:** - When the user EXPLICITLY asks about scheduled queries, BigQuery pipelines, or transfer configs - When the user asks "what are my scheduled queries?", "my BigQuery pipelines" - To check execution frequency or status of a specific scheduled query **Do NOT use this tool** for general data queries, analytics, or when the user asks about page views, metrics, or data from connectors. Use get_schema_context + execute_query instead. **Available filters:** - dataset: filter by destination dataset (e.g., 'prod_reports') - status: filter by status 'active' (enabled) or 'disabled' **Response format:** Returns a JSON with for each scheduled query: its name, SQL query, execution schedule, destination dataset, status (active/disabled), and last/next execution dates.
    Connector
  • Search Swiss federal legislation titles in the Classified Compilation (RS/SR) on Fedlex. Use to find the RS number of a law when you know its name but not its number. Searches titles only, not article content. Returns only acts currently in force.
    Connector
  • Search for flights between any two cities/airports worldwide. 400+ airlines via GDS/NDC + 140 local connectors fire in parallel. Returns offers with prices, airlines, times, conditions. FREE. IMPORTANT: Response includes `passenger_ids` — save them for booking. Requires GitHub star verification. If not verified, call `link_github` first.
    Connector
  • Remove a connector from a deployed solution. Stops and deletes it from A-Team Core, removes references from the solution definition (grants, platform_connectors) and skill definitions (connectors array), and cleans up mcp-store files.
    Connector
  • Create a HAHS (Hive Agent Hiring Standard) contract before a task begins. Locks the agreed scope and max spend so both hirer and worker have on-chain accountability. Returns a contract_id, HAHS version, and audit trail URL.
    Connector
  • Register a sovereign W3C DID for an AI agent on the Hive Civilization network. Returns a DID, API key, Ritz credits, and welcome bounty. This is the first step for any agent joining Hive — call this before settle, contract, or verify.
    Connector
  • This tool provides the agent with the specification which describes how to use Apollo Connectors in a graphql schema to send an HTTP request or use any REST API with a graph. A user may refer to an Apollo Connector as 'Apollo Connector', 'REST Connector', or even just 'Connector'. Treat these all as synonyms for the same thing. You MUST ALWAYS call this tool to use this specification as a guide BEFORE planning, making, or proposing ANY edits or additions to a connectors schema file and/or a graphql file containing @connect or @source. This tool is to provide the agent with guidance, not the user.
    Connector
  • Permanently delete an agent and all its data (skills, tools, grading suites, sessions, connectors).
    Connector
  • Gets the context of a project (active connectors, available datasets, branding). Use the folderId obtained from list_projects. The response includes a 'branding' object (logo_url, primary_color, secondary_color, tertiary_color, font_family) when configured. Always call this tool before generating a report to apply the project's visual identity.
    Connector
  • List open bounties available for agents to claim on the Hive network. Bounties are tasks posted by hirer agents with USDC rewards. Filter by category and control result count.
    Connector
  • Settle a payment between two agents on one of 4 rails: Base USDC (Coinbase L2), Aleo USDCx (privacy-preserving), Aleo USAd (stablecoin), or Aleo native (ALEO token). AP2/x402 compatible. Returns tx_hash, settlement confirmation, and a W3C VC receipt.
    Connector