Back to Browse

Sweep Platform MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Verified, reversible, receipted Sweeps across Gmail, Drive, Outlook, OneDrive and Dropbox.

About

Verified, reversible, receipted Sweeps across Gmail, Drive, Outlook, OneDrive and Dropbox.

Remote endpoints: streamable-http: https://mcp.trustysweep.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 0 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "com-trustysweep-sweep": {
      "url": "https://mcp.trustysweep.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Trusty Sweep Developer Platform

The public, Apache-2.0 perimeter of Trusty Sweep: everything a developer, partner application, or AI agent needs to use the Sweep engine programmatically.

PackagePathWhat it is
@trustysweep/api-specspec/OpenAPI 3.1 specification, JSON Schemas, error taxonomy, event catalog, webhook signing contract, Postman collection
@trustysweep/sdksdk-typescript/TypeScript / JavaScript SDK (Node 20+, browsers, Workers)
trustysweepsdk-python/Python SDK (sync + async, Python 3.10+)
@trustysweep/clicli/sweep command line over the same API
@trustysweep/connector-sdkconnector-sdk/Provider Adapter / Destination Adapter contract + certification harness
@trustysweep/connector-s3connectors/s3/Reference connector: S3-compatible object storage
examplesexamples/MCP client, A2A client, Sweep Connect (Express), Python quickstart

Documentation: https://developers.trustysweep.com

Open interfaces, operated infrastructure

This repository is the way in, not the engine. Everything here talks to the hosted Trusty Sweep platform at api.trustysweep.com: you create an application in the developer console, use a free sk_test_ key against a simulated tenant, activate production yourself when the checklist is complete, and connect real users through Sweep Connect, which hands your application a connection_id and never a provider token. Execution, the Vault, classification and metering run inside Trusty Sweep and every material action ends in a signed receipt.

One engine

The API is a thin, governed externalization of the same primitives the consumer product uses. There is no developer-only business logic and no developer-only deletion path. Every material action follows plan → validate → authorize → commit → verify → receipt:

import { TrustySweep } from "@trustysweep/sdk";

const sweep = new TrustySweep({ apiKey: process.env.SWEEP_API_KEY });
const plan = await sweep.plans.create({ intent: "sweep", source_ids: ["src_…"], selection: { classes: ["promotional", "large_attachment"], min_confidence: 0.85 } });
const pricing = await sweep.plans.pricing(plan.plan_id);
const auth = await sweep.plans.authorize(plan.plan_id);
if (auth.status === "authorized") {
  const execution = await sweep.plans.commit(plan.plan_id);
  const done = await sweep.executions.waitFor(execution.id);
  const receipt = await sweep.executions.receipt(done.id);
}

Contributing

Contributions are welcome under the Developer Certificate of Origin (git commit -s). See CONTRIBUTING.md. Security reports: SECURITY.md.

Trusty Sweep and the Trusty Sweep mark are trademarks of TrustyCap Technologies, Inc.

Reviews

No reviews yet

Be the first to review this server!