Skip to main content
Glama
344,212 tools. Last updated 2026-07-30 15:02

"Using OAuth for Remote Support Authentication" matching MCP tools:

  • Invoke a ForceDream agent to do real work. SPENDS your balance — requires authentication (OAuth). Returns the output, what you were charged, and a proof_id you can verify with forcedream_verify_proof. Honest declines and insufficient output are charged 0; never double-charges. Use this for any agent WITHOUT a dedicated tool. For security-scan-v1, data-extract-v1, or lead-score-v1 specifically, prefer forcedream_security_scan, forcedream_extract_data, or forcedream_score_lead instead -- same underlying agents, simpler input shape.
    Connector
  • Update an owned OAuth client. Only the fields you pass are changed. ``redirect_uris`` / ``scopes``, if passed, fully replace the stored value (validated same as register). ``audience_policy``, if passed, must be ``both`` / ``agents_only`` / ``humans_only`` (out-of-set → ``INVALID_INPUT``). ``subject_type``, if passed, must be ``public`` / ``pairwise`` (out-of-set → ``INVALID_INPUT``). Returns the updated client (same shape as ``colony_oauth_clients_get``). A non-owned/unknown id returns ``NOT_FOUND``. Requires authentication. Rate limit: 30/hour.
    Connector
  • Clear the current authentication session (APIKEY and SHOPID). After this, all tools requiring authentication will fail until a new login is performed.
    Connector
  • Update an owned OAuth client. Only the fields you pass are changed. ``redirect_uris`` / ``scopes``, if passed, fully replace the stored value (validated same as register). ``audience_policy``, if passed, must be ``both`` / ``agents_only`` / ``humans_only`` (out-of-set → ``INVALID_INPUT``). ``subject_type``, if passed, must be ``public`` / ``pairwise`` (out-of-set → ``INVALID_INPUT``). Returns the updated client (same shape as ``colony_oauth_clients_get``). A non-owned/unknown id returns ``NOT_FOUND``. Requires authentication. Rate limit: 30/hour.
    Connector
  • Get a single release cycle's support details for a product — release date, EOL, active-support end, latest patch, LTS, and any extended-support window. Use for a precise version question like "when does Python 3.9 lose support?". `product` is a slug from list_products; `cycle` is a version like "3.12", "20.04", "18". Keyless.
    Connector
  • Generate images using the public /v1/inferences endpoint. For the highest quality prefer RD Pro styles (rd_pro__*); they support reference_images for character/style consistency. For animation styles prefer start_inference_job + get_inference_job instead — animations are long-running. Use `input_image` for the main source image, `reference_images` for extra per-inference guidance, and `style_reference_images` only on create_user_style/update_user_style. The response excludes raw base64 image payloads to keep MCP outputs compact.
    Connector

Matching MCP Servers

Matching MCP Connectors

  • Zero-install remote MCP server for proof-of-existence file attestation.

  • The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.

  • Return the current MCP session's BotTrade authentication state and required next action. This is a read-only status check; OAuth starts through connect_bottrade.
    Connector
  • Real, 14-source sentiment analysis -- not just an LLM's opinion. Combines lexicon-based sentiment (VADER, AFINN), a transformer model (HuggingFace DistilBERT), toxicity (Google Perspective), entity/location verification (Wikidata, OpenStreetMap), news and community alignment (GDELT, Hacker News), grammar, readability, and language detection into one deterministic overall_sentiment, urgency, and business_impact score. Emotion and intent are LLM-derived and explicitly labeled as such -- never presented as verified. SPENDS your balance -- requires authentication (OAuth).
    Connector
  • Generate images using the public /v1/inferences endpoint. For the highest quality prefer RD Pro styles (rd_pro__*); they support reference_images for character/style consistency. For animation styles prefer start_inference_job + get_inference_job instead — animations are long-running. Use `input_image` for the main source image, `reference_images` for extra per-inference guidance, and `style_reference_images` only on create_user_style/update_user_style. The response excludes raw base64 image payloads to keep MCP outputs compact.
    Connector
  • Structured JSON extraction from unstructured text -- grounded in real, live verification, not just pattern-matching. Pulls requested fields, nulls anything missing, never guesses. Cross-references detected proper-noun entities (companies, people, places) against Wikidata to confirm which extracted values are independently verified vs. unconfirmed. SPENDS your balance -- requires authentication (OAuth). Returns the extracted rows, what you were charged, and a proof_id you can verify with forcedream_verify_proof.
    Connector
  • [Requires authentication] This tool needs OAuth. If it returns an authentication error, prompt the user to connect/authenticate this MCP server (OAuth), then retry. Look up production API request logs for your 1inch Business organization to troubleshoot integration issues. Results are always scoped to your authenticated organization. Two modes: 1) By request id: pass requestId (the x-request-id header returned on 1inch API responses). Optionally narrow startTime/endTime (defaults: last 24 hours ending now). 2) Logs in a time window: omit requestId and pass both startTime and endTime (RFC3339). Optionally set logLevel ("info", "warn", or "error") to filter by severity; omit to return all levels. Limits: each call covers at most a 24-hour window; how far back you can query depends on your plan's log retention.
    Connector
  • Permanently delete an owned OAuth client. Its consent grants cascade, so connected users lose access — the correct "deleted app" behaviour. Returns ``{"deleted": true, "id": ...}``. A non-owned/unknown id returns ``NOT_FOUND``. Requires authentication. Rate limit: 20/hour.
    Connector
  • Fetch one of YOUR OAuth clients + its aggregate connection stats. Same fields as ``colony_oauth_clients_list`` items. An id that isn't yours (or doesn't exist) returns ``NOT_FOUND`` — never leaking another owner's client. No secret, no connected-user identities. Requires authentication.
    Connector
  • Permanently delete an owned OAuth client. Its consent grants cascade, so connected users lose access — the correct "deleted app" behaviour. Returns ``{"deleted": true, "id": ...}``. A non-owned/unknown id returns ``NOT_FOUND``. Requires authentication. Rate limit: 20/hour.
    Connector
  • Discovers a site's advertised MCP endpoint (mcp.json / .well-known) and inspects its *declared* OAuth/transport posture (advertised, not guaranteed-working — it does not run a full live handshake). Use when checking whether a site exposes a connectable MCP server and what it claims to support. Result: { handshake_ok, declared_endpoint, declared_tool_names[], score, tool_schema_version }.
    Connector
  • Search your AI-curated job matches by title, location, and remote preference. Returns matched jobs with match scores, companies, and application URLs. Read-only: this does NOT change which roles AI Applyd hunts for you (use aiapplyd_update_job_preferences for that). Requires authentication.
    Connector
  • Return fixed sample Haunt extraction JSON. No signup, API key, remote fetch, provider call, or quota usage.
    Connector
  • Real security review for code: OWASP Top 10, injection, secrets, and dependency risks. Cross-references imported dependencies against OSV.dev (Google's Open Source Vulnerabilities database) for real CVEs, and scans for hardcoded secrets via GitGuardian's real-time detection (400+ types). SPENDS your balance -- requires authentication (OAuth). Returns severity-graded findings, a 0-100 risk score, what you were charged, and a proof_id you can verify with forcedream_verify_proof.
    Connector
  • Compute a LOCUS Level of Care from dimension ratings you already have. Deterministic — no LLM, instant: composite + Determination Grid + the inviolable override floors (e.g. Risk-of-Harm=4 → minimum Level 5), applied in code. Provide EITHER the seven flat D* ratings (1-5 each; Dimension IV splits into IV-A Stress / IV-B Support) OR a per-reviewer agent_scores map. Requires authentication.
    Connector
  • List the OAuth ('Log in with the Colony') clients you own. Returns ``items`` (newest first), each with ``id``, ``client_id``, ``name``, ``owner_contact``, ``redirect_uris``, ``allowed_scopes``, ``is_active``, ``created_at``, ``audience_policy`` (``both`` / ``agents_only`` / ``humans_only`` — which account types may log in), ``subject_type`` (``public`` / ``pairwise`` — the ``sub`` claim shape), and ``connections`` (aggregate ``users`` + ``logins`` counts only — never who, by name). No client secret is returned. Requires authentication.
    Connector