Fingertip MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Fingertip MCP or direct API to manage product sales, book appointments, message customers, and analyze engagement—all through natural language.

Fingertip logoFingertip
Api Key

Fingertip is a business management platform for selling, booking, and customer engagement—all from a single link. It helps businesses streamline operations and connect with customers across social channels.

60 Tools

Try Fingertip now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Fingertip
Try asking
TOOLS

Supported Tools

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

Create Store Invoice

Tool to create a store invoice in Fingertip.

Create Invoice Item

Creates a new invoice item for a Fingertip site.

Create Page

Tool to create a new page within a Fingertip site.

Create Page Block

Creates a new block within the specified page.

Create Fingertip Site

Creates a new Fingertip site with the specified configuration.

Create Site Contact

Tool to create a new contact associated with a site including marketing preferences.

Create Site Invitation

Tool to create a new invitation for a user to join a site.

Create Webhook Subscription

Tool to create a webhook subscription for receiving real-time event notifications from Fingertip.

Delete Block

Tool to permanently delete a block by its ID.

Delete Draft Invoice

Tool to delete a draft store invoice.

Delete Invoice Item

Tool to delete a Fingertip invoice item.

Delete Fingertip Page

Tool to permanently delete a page and all associated data.

Delete Fingertip Site

Tool to delete a Fingertip site.

Delete Site Invitation

Tool to delete a site invitation by its ID.

Delete Site Membership

Tool to delete a specific site membership.

Delete Webhook

Tool to remove an existing webhook subscription.

Delete Workspace Invitation

Tool to delete a workspace invitation by its ID.

Get Block

Tool to retrieve a specific block by its ID.

Get Comprehensive Site Analytics

Tool to retrieve comprehensive analytics for a specific site.

Get Invoice Item

Tool to retrieve details of a specific invoice item by its ID.

Get Page

Tool to retrieve a specific Fingertip page by its ID.

Get Page Theme

Retrieve the theme configuration for a specific page.

Get Fingertip Site

Tool to retrieve a specific Fingertip site by its UUID.

Get Webhook

Tool to retrieve a specific webhook by ID with its related triggers.

Health Check

Tool to verify API connectivity.

List Fingertip Blog Posts

Tool to list published blog posts for a specific site.

List Bookings

Tool to retrieve a paginated list of bookings for a site with optional status filtering.

List Event Types

Tool to list event types for a specific site.

List Form Responses

Tool to retrieve form responses for a specific form template and site.

List Form Templates

Tool to retrieve a paginated list of form templates.

List Invoice Items

Tool to list invoice items for a specific Fingertip site.

List Fingertip Invoices

Tool to retrieve a paginated list of invoices for sites the user has access to.

List Fingertip Messages

Tool to retrieve a paginated list of messages for a site.

List Orders

Tool to retrieve orders with basic information for a specific site.

List Page Blocks

Tool to retrieve all blocks associated with a specific page.

List Pages

List all pages for a specific Fingertip site.

List Page Themes

Tool to retrieve a paginated list of page themes.

List Quotes

List all quotes for a specific Fingertip site.

List Sample Bookings

Tool to retrieve sample bookings for testing and development purposes.

List Sample Form Responses

Tool to retrieve sample form responses for a specific form template.

List Sample Orders

Tool to retrieve sample orders for testing purposes.

List Sample Site Contacts

Tool to retrieve sample site contacts with basic information.

List Site Contacts

Tool to retrieve site contacts with basic contact information and engagement metrics.

List Site Invitations

Tool to retrieve a paginated list of invitations for a specific site.

List Site Memberships

Tool to retrieve a paginated list of site memberships.

List Sites

Tool to retrieve a paginated list of sites accessible by the API key.

List Webhooks

Tool to retrieve a paginated list of webhooks with optional filtering and sorting.

List Workspaces

Tool to retrieve a paginated list of workspaces accessible to the API key.

Mark Invoice as Paid

Tool to mark a store invoice as paid in Fingertip.

Patch Page Theme

Apply JSON Patch operations to page theme content following RFC 6902.

Search Help Articles

Tool to search help documentation articles by query string.

Send Store Invoice

Tool to send a store invoice to a customer.

Send Fingertip Quote

Tool to send a store quote by its UUID.

Update Block

Updates an existing block with the provided data.

Update Invoice Item

Tool to update an invoice item in Fingertip.

Update Page

Tool to update an existing Fingertip page with new data.

Update Page Theme

Tool to update the theme configuration for a specific page.

Update Fingertip Quote

Tool to update an existing Fingertip store quote.

Update Fingertip Site

Updates an existing Fingertip site with provided partial data.

Update Webhook

Tool to update an existing Fingertip webhook subscription.

SETUP GUIDE

Connect Fingertip MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Get comprehensive site analytics for site ID 1234' }],
  stopWhen: stepCountIs(5)
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Fingertip API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Fingertip Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Get comprehensive analytics for my main Fingertip site for this month'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Fingertip actions with your Agent

Why Use Composio?

AI Native Fingertip Integration

  • Supports both Fingertip MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Fingertip data

Managed Auth

  • Built-in API Key handling with secure credential storage
  • Central place to manage, scope, and revoke Fingertip access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Fingertip
  • Scoped, least privilege access to Fingertip resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Fingertip requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Fingertip.It takes 30 seconds.

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

Start building