How to integrate Moco MCP with Claude Code

Manage your Moco directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns. You can do this in two different ways: Via Composio Connect - Direct and easiest approach Via Composio SDK - Programmatic approach with more control

Moco logoMoco
Api Key

Moco is a business management platform offering project management, time tracking, and invoicing tools. It helps teams organize projects, track billable hours, and streamline client billing in one place.

218 Tools

Introduction

Manage your Moco directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns.

You can do this in two different ways:

  1. Via Composio Connect - Direct and easiest approach
  2. Via Composio SDK - Programmatic approach with more control

Also integrate Moco with

Why use Composio?

  • Only one MCP URL to connect multiple apps with Claude Code with zero auth hassles.
  • Programmatic tool calling allows LLMs to write its code in a remote workbench to handle complex tool chaining. Reduces to-and-fro with LLMs for frequent tool calling.
  • Handling Large tool responses out of LLM context to minimize context rot.
  • Dynamic just-in-time access to 20,000 tools across 1000+ other Apps for cross-app workflows. It loads the tools you need, so LLMs aren't overwhelmed by tools you don't need.

Connecting Moco to Claude Code using Composio

1. Add the Composio MCP to Claude

Terminal

2. Start Claude Code

bash
claude

3. Open your MCP list

bash
/mcp

4. Select Composio and click on Authenticate

Select Composio and click Authenticate

5. This will redirect you to the Composio OAuth page. Complete the flow by authorizing Composio and you're all set.

Composio OAuth authorization page
Composio authorization complete
Ask Claude to connect to your account and authenticate via the link

What is the Moco MCP server, and what's possible with it?

The Moco MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Moco account. It provides structured and secure access to your business and project management data, so your agent can manage time tracking, handle deals, organize contacts, and update project activities on your behalf.

  • Automated time tracking and activity management: Let your agent list, retrieve, and update time entries, so tracking billable hours and project work is effortless.
  • Deal and pipeline automation: Ask your agent to fetch deal details, delete obsolete deals, or reference available deal categories to keep your sales pipeline up to date.
  • Comprehensive contact and company organization: Have your agent list contacts, add new companies, or delete companies as your business relationships evolve.
  • Comment retrieval for collaboration: Retrieve and review comments on various resources, helping your team stay in sync and informed.
  • Flexible project and resource control: Use your agent to access and manage project-related information, so you can stay organized without manual data entry.

Connecting Moco via Composio SDK

Composio SDK is the underlying tech that powers Rube. It's a universal gateway that does everything Rube does but with much more programmatic control. You can programmatically generate an MCP URL with the app you need (here Moco) for even more tool search precision. It's secure and reliable.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step10 STEPS
1

Prerequisites

Before starting, make sure you have:
  • Claude Pro, Max, or API billing enabled Anthropic account
  • Composio API Key
  • A Moco account
  • Basic knowledge of Python or TypeScript
2

Install Claude Code

bash
# macOS, Linux, WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

To install Claude Code, use one of the following methods based on your operating system:

3

Set up Claude Code

bash
cd your-project-folder
claude

Open a terminal, go to your project folder, and start Claude Code:

  • Claude Code will open in your terminal
  • Follow the prompts to sign in with your Anthropic account
  • Complete the authentication flow
  • Once authenticated, you can start using Claude Code
Claude Code initial setup showing sign-in prompt
Claude Code terminal after successful login
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here

Create a .env file in your project root with the following variables:

  • COMPOSIO_API_KEY authenticates with Composio (get it from Composio dashboard)
  • USER_ID identifies the user for session management (use any unique identifier)
5

Install Composio library

npm install @composio/core dotenv

Install the Composio TypeScript library to create MCP sessions.

  • @composio/core provides the core Composio functionality
  • dotenv loads environment variables from your .env file
6

Generate Composio MCP URL

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['moco'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http moco-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Create a script to generate a Composio MCP URL for Moco. This URL will be used to connect Claude Code to Moco.

What's happening

  • We import the Composio client and load environment variables
  • Create a Composio instance with your API key
  • Call create() to create a Tool Router session for Moco
  • The returned mcp.url is the MCP server URL that Claude Code will use
  • The script prints this URL so you can copy it
7

Run the script and copy the MCP URL

node --loader ts-node/esm generate_mcp_url.ts
# or if using tsx
tsx generate_mcp_url.ts

Run your TypeScript script to generate the MCP URL.

  • The script connects to Composio and creates a Tool Router session
  • It prints the MCP URL and the exact command you need to run
  • Copy the entire claude mcp add command from the output
8

Add Moco MCP to Claude Code

bash
claude mcp add --transport http moco-composio "YOUR_MCP_URL_HERE" --headers "X-API-Key:YOUR_COMPOSIO_API_KEY"

# Then restart Claude Code
exit
claude

In your terminal, add the MCP server using the command from the previous step. The command format is:

  • claude mcp add registers a new MCP server with Claude Code
  • --transport http specifies that this is an HTTP-based MCP server
  • The server name (moco-composio) is how you'll reference it
  • The URL points to your Composio Tool Router session
  • --headers includes your Composio API key for authentication

After running the command, close the current Claude Code session and start a new one for the changes to take effect.

9

Verify the installation

bash
claude mcp list

Check that your Moco MCP server is properly configured.

  • This command lists all MCP servers registered with Claude Code
  • You should see your moco-composio entry in the list
  • This confirms that Claude Code can now access Moco tools

If everything is wired up, you should see your moco-composio entry listed:

Claude Code MCP list showing the toolkit MCP server
10

Authenticate Moco

The first time you try to use Moco tools, you'll be prompted to authenticate.

  • Claude Code will detect that you need to authenticate with Moco
  • It will show you an authentication link
  • Open the link in your browser (or copy/paste it)
  • Complete the Moco authorization flow
  • Return to the terminal and start using Moco through Claude Code

Once authenticated, you can ask Claude Code to perform Moco operations in natural language. For example:

  • "List activities tracked for this week"
  • "Create a new company called GreenTech"
  • "Get details for deal with ID 456"

Complete Code

Here's the complete code to get you started with Moco and Claude Code:

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['moco'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http moco-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Conclusion

You've successfully integrated Moco with Claude Code using Composio's MCP server. Now you can interact with Moco directly from your terminal using natural language commands.

Key features of this setup:

  • Terminal-native experience without switching contexts
  • Natural language commands for Moco operations
  • Secure authentication through Composio's managed MCP
  • Tool Router for dynamic tool discovery and execution

Next steps:

  • Try asking Claude Code to perform various Moco operations
  • Add more toolkits to your Tool Router session for multi-app workflows
  • Integrate this setup into your development workflow for increased productivity

You can extend this by adding more toolkits, implementing custom workflows, or building automation scripts that leverage Claude Code's capabilities.

TOOLS

Supported Tools

Every Moco action and event your agent gets out of the box.

Activate Offer Customer Approval

Tool to activate customer approval on an offer to generate the offer_document_url.

List Activities

Retrieves a list of activities (time entries) from MOCO.

Get Activity

Tool to retrieve a single activity by ID.

Update Activity

Tool to update an existing activity.

Assign Offer

Tool to assign an offer to a project, company, or deal.

Assign Purchase to Project

Tool to assign a purchase item to a project by creating or linking to an expense.

List comments

Tool to retrieve a list of comments.

Create Company

Creates a new company in MOCO (customer, supplier, or organization).

Delete a company

Tool to delete a company.

List Contacts

Tool to retrieve a list of contacts.

Create Account Catalog Service

Tool to create a catalog service including its items.

Create Catalog Service Item

Tool to create a new item within a catalog service in MOCO.

Create Account Custom Property

Tool to create a new custom property in MOCO.

Create Activities Bulk

Tool to bulk create multiple activities (time entries) at once in MOCO.

Create Activity

Tool to create a new activity (time tracking entry) in MOCO.

Create Comment

Tool to create a new comment on a MOCO resource.

Create Comments Bulk

Tool to create multiple comments in bulk for MOCO objects.

Create Contact

Tool to create a new contact person in MOCO.

Create Deal

Tool to create a new deal in MOCO.

Create Deal Category

Creates a new deal category in MOCO with a name and probability percentage.

Create Employment

Create a new employment (weekly work model) for a user in MOCO.

Create Expense Template

Tool to create a new expense template in MOCO.

Create Holiday

Create a new holiday entry for a user in MOCO.

Add Invoice Attachment

Tool to add a PDF attachment to an existing invoice.

Create Invoice Bookkeeping Export

Tool to create a new invoice bookkeeping export.

Create Invoice Payment

Tool to create a new invoice payment.

Create Invoice Reminder

Tool to create a new invoice reminder for an existing invoice.

Create Invoice Payments Bulk

Tool to create multiple invoice payments in bulk.

Create Offer

Tool to create a new offer/proposal.

Create Offer Attachment

Tool to upload an attachment to an offer.

Create Project Contract

Tool to create a new contract (assign staff) for a project in MOCO.

Create Project Expense

Tool to create an additional service entry (expense) on a project.

Create Project Expenses Bulk

Tool to create multiple project expense entries in bulk.

Create Project Payment Schedule

Tool to create a payment schedule entry for a project.

Create Recurring Expense on Project

Tool to create a recurring additional services entry on a project in MOCO.

Trigger Recurring Expense

Tool to manually trigger the creation of an expense entry for an active recurring expense ahead of its automatic schedule.

Create Project Task

Tool to create a new task (service) for a project in MOCO.

Create Purchase Bookkeeping Export

Tool to create a new purchase bookkeeping export.

Create Purchase Payment

Tool to create a new purchase payment.

Create Purchase Payments Bulk

Tool to create multiple purchase payments in bulk.

Create Receipt

Tool to create a new receipt.

Create Schedule

Tool to create a planning entry (absence/schedule).

Create Tag

Tool to create a new tag in MOCO.

Create Task Template

Tool to create a new task template in MOCO.

Create Unit

Tool to create a new unit/team in MOCO.

Create User

Tool to create a new staff member/user in MOCO.

Create Users Presences

Tool to create a presence entry (work time tracking) in MOCO.

Toggle User Presence

Tool to toggle user presence (clock in/out) in MOCO.

Create Work Time Adjustment

Tool to create a new work time adjustment in MOCO.

Deactivate Offer Customer Approval

Tool to deactivate a customer approval on an offer to prevent access and signing.

List Deal Categories

Retrieves all deal categories configured in MOCO with their IDs, names, probabilities, and timestamps.

Delete Deal

Tool to delete a deal.

Get Deal

Retrieves detailed information for a specific deal/lead by its ID from MOCO.

List Deals

Tool to retrieve a list of all deals (leads).

Update Deal

Tool to update an existing deal.

Delete Catalog Service

Tool to delete a catalog service.

Delete Account Custom Property

Tool to delete a custom property in MOCO.

Delete Expense Template

Tool to delete an expense template.

Delete Catalog Service Item

Tool to delete an item from a catalog service.

Delete Comment

Tool to delete a manually created comment.

Delete Contact Person

Tool to delete a contact person in MOCO.

Delete Deal Category

Tool to delete a deal category.

Delete Invoice

Tool to delete a single invoice.

Delete Invoice Payment

Tool to delete an invoice payment.

Delete Offers Attachments

Tool to remove an attachment from an offer.

Delete Presence

Tool to delete a presence entry.

Delete Project

Tool to delete a project.

Delete Project Staff Assignment

Tool to delete a staff assignment (contract) from a project.

Delete Project Expense

Tool to delete an additional services entry on a project.

Delete Project Payment Schedule

Tool to delete a payment schedule from a project.

Delete Project Recurring Expense

Tool to delete a recurring expense from a project.

Delete Project Task

Tool to delete a specific task from a project.

Delete All Project Tasks

Tool to bulk delete all deletable tasks on a project.

Delete Purchase

Tool to delete a purchase.

Delete Purchase Payment

Tool to delete a purchase payment.

Delete Schedule

Tool to delete a schedule entry (absence).

Delete Tag

Tool to delete a tag in MOCO.

Delete Taggings

Tool to selectively remove tags from an entity.

Delete User

Tool to delete a user from MOCO.

Delete Employment

Tool to delete an employment (weekly work model) for a user.

Disable Project Share

Tool to deactivate project report sharing.

Mark Project Expenses as Billed

Tool to mark project expense entries as already billed.

Get Catalog Service Item

Tool to retrieve a specific item within a catalog service in MOCO.

Get Account Fixed Costs

Tool to retrieve all fixed costs from the account.

Get Cashflow Report

Tool to retrieve the cashflow report from MOCO.

Get Comment

Tool to retrieve a single comment by ID.

Get Company

Tool to retrieve a single company by ID from MOCO.

Get Contact

Tool to retrieve detailed information for a specific contact person by ID from MOCO.

Get Custom Property

Tool to retrieve a single custom property by ID from MOCO.

Get Deal Category

Tool to retrieve a single deal category by ID.

Get Employment

Tool to retrieve a single employment (weekly work model) by ID.

Get Holiday

Tool to retrieve a single holiday entry by ID.

Get Internal Hourly Rates

Tool to retrieve all internal hourly rates from the account.

Get Invoice

Tool to retrieve a single invoice by ID with full details including items, payments, and reminders.

Get Invoice Bookkeeping Export

Tool to retrieve a single invoice bookkeeping export by ID.

Get Invoice Payment

Tool to retrieve a single invoice payment by ID.

Get Invoice Reminder

Tool to retrieve a single invoice reminder by ID.

Get Invoice Reminders

Tool to retrieve all invoice reminders.

Get Invoice Bookkeeping Exports

Tool to retrieve all invoice bookkeeping exports.

Get Invoice Expenses

Tool to retrieve all expenses that were invoiced in a particular invoice.

Get Locked Invoices

Tool to retrieve all locked invoices.

Get Invoice Payments

Tool to retrieve all invoice payments.

Get Invoice Timesheet

Tool to retrieve a time sheet for a particular invoice, i.

Get Offer Customer Approval

Tool to retrieve customer approval status and URL for an offer.

Get Offer PDF

Tool to retrieve a single offer document as PDF.

Get Presence

Tool to retrieve a single presence entry by ID.

Get Profile

Tool to retrieve the current authenticated user's profile.

Get Project Contract

Tool to retrieve a single staff assignment (contract) on a project.

Get Single Project Expense

Tool to retrieve a single additional service (expense) for a project.

Get Project Payment Schedules By ID

Tool to retrieve all payment schedules for a specific project by its ID.

Get Project Report

Tool to retrieve a project report with budget, hours, costs, and business indicators.

Get Project Expenses

Tool to retrieve all additional services (expenses) for a project.

Get Projects Payment Schedules

Tool to retrieve all payment schedules for fixed price projects.

Get Project Payment Schedule

Tool to retrieve a single payment schedule entry for a project by its ID.

Get Project Recurring Expenses

Tool to retrieve all recurring expenses for a specific project.

Get Project Task

Tool to retrieve a single task on a project by project ID and task ID.

Get Purchase

Tool to retrieve a single purchase by ID.

Get Purchase Bookkeeping Export

Tool to retrieve a single purchase bookkeeping export by ID.

Get Purchase Payment

Tool to retrieve a single purchase payment by ID.

Get Purchase Bookkeeping Exports

Tool to retrieve all purchase bookkeeping exports.

Get Purchase Budgets

Tool to retrieve purchase budgets for a given fiscal year.

Get Purchase Payments

Tool to retrieve all purchase payments.

Get Receipt

Tool to retrieve a single receipt by ID from MOCO.

Get Receipts

Retrieves a list of receipts (expense receipts) from MOCO.

Get All Recurring Expenses

Tool to retrieve all recurring additional services entries across all projects in MOCO.

Get Report Absences

Tool to retrieve absence report showing employee absences by type and date range.

Get Finance Report

Tool to retrieve the finance report from MOCO.

Get Utilization Report

Tool to retrieve the utilization report from MOCO.

Get Schedule

Tool to retrieve a single planning entry (schedule) by ID.

Get Tag

Tool to retrieve a single tag by ID.

Get Taggings

Tool to retrieve the list of tags associated with an entity.

Get Tags

Tool to retrieve the list of tags from MOCO.

Get Task Template

Tool to retrieve a single task template by ID.

Get Unit

Tool to retrieve a single unit/team by ID from MOCO.

Get User

Tool to retrieve detailed information for a specific user/staff member by ID.

Get User Performance Report

Tool to retrieve a user's performance report comparing tracked hours vs target hours.

Get VAT Code Purchase

Tool to retrieve a single VAT code for purchases by ID from MOCO.

Get VAT Code Purchases

Tool to retrieve the list of purchase VAT codes.

Get VAT Code Sale

Tool to retrieve a single VAT code for sales by ID from MOCO.

Get VAT Code Sales

Tool to retrieve the list of sale VAT codes from MOCO.

Get Work Time Adjustment

Tool to retrieve a single work time adjustment by ID.

Create Invoice

Tool to create a new invoice.

List Invoices

Tool to retrieve a list of all invoices.

List All Project Expenses

Tool to retrieve all project expenses across all projects.

List Assigned Projects

Tool to retrieve all projects assigned to the authenticated user.

List Catalog Services

List all catalog services (Leistungskatalog) from the account.

List Companies

Tool to retrieve all companies (customers and suppliers).

List Custom Properties

Tool to retrieve all custom properties from MOCO.

List Employments

Retrieve all user employments from MOCO.

List Expense Templates

Tool to retrieve all expense templates from MOCO.

List Holidays

Tool to retrieve all user holidays/vacation entries from MOCO.

List Hourly Rates

Tool to retrieve all hourly rates from MOCO.

List Invoice Attachments

Tool to retrieve all attachments for an invoice.

List Offer Attachments

Tool to retrieve all attachments for a specific offer.

List Presences

Tool to retrieve all user presences (attendance entries) from MOCO.

List Project Contracts

Tool to retrieve all contracts (assigned staff) for a project.

List Project Groups

Retrieve all project groups from MOCO.

List Project Tasks

Tool to retrieve all tasks (services) for a project by project ID.

List Purchase Categories

Retrieves all purchase categories configured in MOCO with their IDs, names, account codes, and status.

List Purchase Drafts

Tool to retrieve all purchase drafts (German: Ausgaben – Entwürfe).

List Purchases

Tool to retrieve all purchases (supplier invoices).

List Schedules

Tool to retrieve all absences (schedules) from MOCO.

List Task Templates

Tool to retrieve all task templates from MOCO.

List Units

Tool to retrieve all units/teams in MOCO.

List User Roles

Tool to retrieve all user permission roles in MOCO.

List Work Time Adjustments

Tool to retrieve all user work time adjustments from MOCO.

Get Offer

Tool to retrieve a single offer by ID.

List Offers

Tool to retrieve a list of all offers.

Patch Taggings

Tool to partially update taggings by adding new tags to an entity without removing existing tags.

List Planning Entries

Tool to retrieve a list of all planning entries.

Create Planning Entry

Tool to create a new planning entry.

Get Planning Entry

Tool to retrieve a single planning entry by ID.

Create Project

Tool to create a new project in MOCO.

Get Project

Retrieves comprehensive details for a specific project by its ID.

List Projects

Tool to retrieve a list of all projects.

Update Project

Tool to update an existing project.

Create Purchase

Tool to create a new purchase.

Send Invoice by Email

Tool to send an invoice by email.

Send Invoice Reminder Email

Tool to send an invoice reminder by email.

Send Offer Email

Tool to send an offer by email to specified recipients.

Share Project

Tool to activate project report sharing and get a shareable URL.

Start Activity Timer

Tool to start or continue a timer on an activity.

Stop Activity Timer

Tool to stop a timer running on an activity.

Unassign Project from Project Group

Tool to unassign a project from its project group.

Update Account Catalog Service

Tool to update a catalog service.

Update Catalog Service Item

Tool to update an existing item within a catalog service in MOCO.

Update Account Custom Properties

Tool to update a custom property in MOCO.

Update Expense Template

Tool to update an existing expense template in MOCO.

Update Account Internal Hourly Rates

Tool to update internal hourly rates for one or more users for a specific year.

Update Comment

Tool to update an existing comment on a MOCO resource.

Update Company

Tool to update an existing company.

Update Contact Person

Tool to update an existing contact person in MOCO.

Update Deal Category

Tool to update an existing deal category in MOCO.

Update Holiday

Tool to update an existing holiday entry in MOCO.

Update Invoice Status

Tool to update an invoice status.

Update Offer Status

Tool to update the status of an offer.

Update Planning Entry

Tool to update an existing planning entry.

Update Presence

Tool to update a presence entry (work time tracking) in MOCO.

Archive Project

Tool to archive a project in MOCO.

Update Project Contract

Tool to update a staff assignment to a project.

Update Project Expense

Tool to update an additional services entry (expense) on a project.

Update Project Payment Schedule

Tool to update a payment schedule entry for a project.

Update Project Recurring Expense

Tool to update a recurring additional services entry on a project.

Update Project Task

Tool to update an existing task on a project in MOCO.

Unarchive Project

Tool to reactivate an archived project.

Update Purchase

Tool to update an existing purchase.

Update Purchase Document

Tool to update or store a purchase document.

Update Purchase Status

Tool to update the status of a purchase.

Update Receipt

Tool to update an existing receipt.

Update Schedule

Tool to update a planning entry (absence/schedule).

Update Tag

Tool to update an existing tag in MOCO.

Update Taggings

Tool to replace all tags associated with an entity.

Update Task Template

Tool to update an existing task template in MOCO.

Update Unit

Tool to update an existing unit/team.

Update User

Tool to update an existing staff member/user in MOCO.

Update User Employment

Tool to update a user employment record.

Update Work Time Adjustment

Tool to update an existing work time adjustment in MOCO.

List Users

List all users in MOCO with optional filters.

FAQ

Frequently asked questions

With a standalone Moco MCP server, the agents and LLMs can only access a fixed set of Moco tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Moco and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Claude Code fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Moco tools.

Yes, absolutely. You can configure which Moco scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Moco data and credentials are handled as safely as possible.

Start with Moco.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Moco tool your agent needs.Free to start.

Start building