Sweet Assist MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sweet Assist MCP Serverlist my active transactions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sweet Assist MCP Server
Standalone MCP server exposing Sweet Assist transactions, contacts, envelopes and agent profiles to Claude, behind an OAuth 2.1 login + approve flow.
Running locally
npm install
node index.js # http://localhost:3000Expose it over HTTPS (Claude will not accept an http:// connector URL):
ngrok http 3000 # then set SERVER_URL to the https URL it printsSERVER_URL in .env must match the public URL exactly. It is used to build
the OAuth metadata, the authorize/token endpoints and the redirect targets. If it
still says http://localhost:3000 while Claude reaches you over a tunnel, the
login redirect breaks.
Then in Claude: Settings → Connectors → Add custom connector → paste
https://<your-host>/mcp.
Related MCP server: Clio Manage MCP
The connector flow
Step | Endpoint | What happens |
1 |
| 401 + |
2 |
| names the authorization server |
3 |
| endpoint metadata |
4 |
| Claude registers itself (RFC 7591). No human step. |
5 |
| branded Sweet Assist login page |
6 |
| verifies the broker's password against |
7 |
| the consent screen; redirects back with a code |
8 |
| code + PKCE verifier → access token |
9 |
|
|
Public client with PKCE S256 — there is no client secret. Authorization codes are single-use and expire in 60 seconds.
Before production
Move
clients/codes/tokensout of memory (oauth/store.js). They areMaps today, so a restart invalidates every connector and each broker must re-approve. These need database tables.Add token revocation.
revokeToken()exists but nothing calls it. Removing the connector in Claude should kill the token server-side.Rate-limit
POST /oauth/login. There is no throttling on password attempts.Tighten CORS.
app.use(cors())currently allows any origin.Serve over real HTTPS, not a dev tunnel.
Set a refresh token flow — access tokens currently last 30 days with no refresh.
Tools
list_transactions, get_transaction, list_envelopes, list_contacts,
list_agents, get_my_profile — all read-only, all scoped to the authenticated
broker and the agents beneath them via getScopedUserIds().
Transaction status
txn_transactions.status is an int owned by the Laravel app
(TxnConstant::TXN_STATUS). It is surfaced as a label via STATUS_LABEL in
constants.js — keep the two in step:
Int | Name |
1 | Active |
2 | Closed ( |
3 | Canceled |
4 | Expired |
5 | Deleted |
6 | Canceled, Closed — matches both the |
status: 'all' (the default) excludes deleted. An unrecognised status returns an
error listing the valid ones rather than silently falling back to everything.
Transaction phase — prefer this filter
What the product calls a phase is not one column. Each tab a broker sees is a
combination of phase, status and for_closed. PHASE_TABS in
constants.js mirrors the Laravel
app's Livewire/Transaction/Mongos/txnTable.php pipeline — if those tabs change,
this must change too:
Tab |
|
|
|
Active | 1 | 1 | 0 |
Pending | 0 | 1 | 0 |
Submitted For Closing | 1 or 0 | 1 | 1 |
Closing | 3 | 1 | — |
Closed | 3 | 2 | — |
Canceled | — | 3 | — |
Note the trap: "Submitted For Closing" is not a phase value. It is
for_closed = 1 while phase stays 1 or 0. Filtering on phase alone silently
returns the wrong rows.
expired (status 4) and deleted (status 5) have no tab of their own but are
accepted as phase names. Omitting phase returns everything except deleted.
list_transactions no longer advertises a status parameter. Offering both was
the bug: asked for "my active transactions" the model picked status: 'active', which
is the raw column — and a transaction moved to Closing still has status = 1, so it
kept appearing under active. A status argument from an older client is still accepted
and routed through the same tab table, so both spellings now mean the Active tab.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server providing access to NetSuite data through OAuth 2.0 with PKCE authentication. Works seamlessly with any MCP-compatible client including Claude Code, Cursor IDE, and Gemini CLI.Last updated26319MIT
- AlicenseAqualityBmaintenanceMCP server that connects Clio Manage to Claude via OAuth, enabling law firm management tasks like matter lookup, time tracking, billing, calendar, and document retrieval through natural language.Last updated41MIT
- Alicense-qualityCmaintenanceAn MCP server that enables Claude to manage TickTick tasks and projects via OAuth 2.1 with PKCE authentication.Last updated10MIT
- Flicense-qualityCmaintenanceMCP server scaffold that exposes stubbed tools for listing, searching, and summarizing sources, with built-in OAuth 2.1 authorization flow for Claude integration.Last updated
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Streamable HTTP MCP server for Google Calendar and Sheets with OAuth login.
MCP server for verifying EUDI/Talao wallet data via OIDC4VP (pull) for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anoopmkmk/sa-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server