@agentis-hq/mcp
v0.2.1
Published
Agentis MCP server for agent wallet, payment, policy, privacy, and yield tools
Readme
Agentis MCP
Agentis MCP tools for remote Streamable HTTP and local stdio clients.
Remote Worker
src/worker.ts is a stateless Cloudflare Worker endpoint:
- MCP endpoint:
/mcp - OAuth resource metadata:
/.well-known/oauth-protected-resource - authentication: OAuth 2.1 authorization code + PKCE
- token validation: backend
/oauth/introspect
Build without deploying:
bun run build:workerBefore deployment, set the same secret on the backend and Worker:
# Backend
MCP_INTROSPECTION_SECRET=<secret>
# Cloudflare
wrangler secret put MCP_INTROSPECTION_SECRETUpdate AGENTIS_MCP_RESOURCE in wrangler.toml if the deployed URL is not
https://mcp.agentis.systems/mcp.
Local Stdio
{
"mcpServers": {
"agentis": {
"command": "agentis-mcp",
"env": {
"AGENTIS_ACCOUNT_KEY": "agt_user_..."
}
}
}
}Local stdio retains account-key authentication for compatibility. Agent API keys are resolved internally and are not configured separately.
Set AGENTIS_API_URL only when targeting a local or staging backend. The default API is https://api.agentis.systems.
The server intentionally skips local encrypted-wallet vault signing for v1. Use the CLI for local-wallet operations.
Financial tools use provider-neutral names:
agentis_earn_deposit
agentis_earn_withdraw
agentis_earn_positions
agentis_earn_sweep
agentis_tokens_search
agentis_swap_quote
agentis_swap_execute
agentis_portfolio
agentis_recurring_list
agentis_recurring_create
agentis_recurring_cancelJupiter is the current Solana execution/data provider, but it is not part of the public tool namespace.
