CompanyCam MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with CompanyCam MCP or direct API to find projects, review jobsite photos, share project updates, and document field work through natural language.

CompanyCam logoCompanyCam
Api Key

CompanyCam is a photo-first jobsite management platform for project teams. It helps crews document work, coordinate jobs, and share visual updates fast.

24 Tools

Try CompanyCam now

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

TOOL ROUTER PLAYGROUND
CompanyCam
Try asking
TOOLS

Supported Tools

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

Add Comment

Add a comment to either a CompanyCam project or photo.

Add Photo Tags

Attach media tags by display name.

Add Project Labels

Attach project labels by display name.

Add Project Photo From URL

Add a photo to a CompanyCam project by having CompanyCam fetch a publicly reachable HTTPS image URL.

Create Customer

Create a CompanyCam customer with optional contact details, company status, notes, address, and initial contacts.

Create Project

Create a CompanyCam project with its required address and optional contact, customer, location, and template details.

Create Project Task

Create a task on a CompanyCam project with task details and optional assignees.

Create Photo Tag

Create a reusable CompanyCam media tag for organizing photos.

Get Account Context

Return the connected CompanyCam user and company so an agent can identify the account, role, and company before acting.

Get Photo

Get one CompanyCam photo by ID.

Get Project

Get one CompanyCam project by ID.

List Comments

List comments attached to either a CompanyCam project or photo.

List Customers

List or search CompanyCam customers by name or contact text.

List Project Labels

List reusable CompanyCam project labels that can be attached to projects.

List Project Photos

List and filter photos in a CompanyCam project by tags, users, or groups, one cursor page at a time.

List Projects

List projects with optional lifecycle and assigned-user filters, one cursor page at a time.

List Project Tasks

List tasks for a CompanyCam project, including status, completion, assignees, and attached media.

List Photo Tags

List reusable CompanyCam media tags and return an opaque cursor for the next page.

List Users

List CompanyCam users available for task assignment and project workflows.

Search Projects

Search CompanyCam projects by a free-text query when project list filters are insufficient.

Set Photo Description

Create or replace the description attached to a CompanyCam photo.

Update Customer

Update the name, notes, city, or postal code of an existing CompanyCam customer.

Update Project

Update editable project identity, address, or primary-contact fields without changing archive state.

Update Project Task

Update a CompanyCam project task's details or add and retain assignees.

SETUP GUIDE

Connect CompanyCam MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

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

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for CompanyCam
3

Connect to AI Agent

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

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.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: 'List recent CompanyCam projects and summarize the latest jobsite photo activity'
  }],
  maxSteps: 5,
});

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

Connect CompanyCam 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 CompanyCam 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: 'List recent CompanyCam projects and summarize the latest jobsite photo activity'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute CompanyCam actions with your Agent

Why Use Composio?

AI Native CompanyCam Integration

  • Supports both CompanyCam MCP and direct API based integrations
  • Structured, LLM-friendly schemas so agents can work with projects, photos, and jobsite updates without guesswork
  • Rich coverage for reading, writing, and querying CompanyCam data from natural language prompts

Managed API Key Auth

  • Bring your CompanyCam API key once, then let Composio handle secure credential storage and API request handling
  • Use auth_configs.create() and connected_accounts.link() to connect CompanyCam accounts without hard-coding keys in agent code
  • Manage, rotate, and revoke CompanyCam access from one place across users and environments

Agent Optimized Design

  • Tools are designed for AI models to understand CompanyCam tasks like listing projects, finding photos, and pulling jobsite context
  • Execution logs show what the agent ran, when it ran, and which CompanyCam account it used
  • Tools improve over time using real success and error patterns, which means fewer brittle integration flows

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access CompanyCam
  • Scoped, least privilege access for CompanyCam resources instead of broad, shared credentials
  • Full audit trail of agent actions to support review, field operations oversight, and compliance
FAQ

Frequently asked questions

Yes, CompanyCam requires you to configure your own API key. 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 CompanyCam.It takes 30 seconds.

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

Start building