> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.neetoinvoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Examples

> Prompts to try once your assistant is connected.

These are plain requests, not commands. Your assistant picks the right
[tools](/mcp/tools) and chains them when a task needs more than one.

## Clients and projects

```
List all active team members
```

```
Get details for client Acme Corp
```

```
Create a Website Redesign project for Acme Corp with tasks Design and Development,
billed at an hourly project rate of 120 USD
```

```
Which projects is oliver@example.com on?
```

An assistant answering the second prompt typically calls `ListClients` to resolve the name to
an ID, then `GetClient` for the details. You do not need to supply IDs yourself.

## Time tracking

```
Log 2.5 hours for me on the Website Redesign design task for yesterday
```

```
Update my time entry from July 14 to 3 hours
```

```
Show unbilled time entries on Website Redesign for July
```

## Invoicing

```
Generate an invoice for Acme Corp from all unbilled time entries in July,
numbered INV-EXT-001, due in 30 days
```

```
Add accounts@example.com as an invoice recipient for Acme Corp
```

```
Email the last invoice to Acme Corp's recipients
```

## Reports, PTO, and team

```
Show the payroll summary for July 2026
```

```
Who is missing timesheet entries this month?
```

```
Show the monthly PTO report for July 2026
```

```
Mark July 4 as forced PTO for everyone on the design team
```

```
Invite sam@example.com to the workspace as a standard user
```

## Tips

<AccordionGroup>
  <Accordion title="Name things instead of quoting IDs">
    The list tools exist so an assistant can resolve a name to an ID. Say "Acme Corp" rather
    than looking up the UUID yourself.
  </Accordion>

  <Accordion title="Confirm before write operations">
    Creating invoices, deleting time entries, and deactivating team members all change real
    workspace data. Ask the assistant to show you what it plans to do first.
  </Accordion>

  <Accordion title="Several workspaces on one connection">
    Every tool accepts an optional workspace argument. Run `ListWorkspaces` once and name the
    workspace in your prompt when the connection reaches more than one.
  </Accordion>

  <Accordion title="Results depend on how you connected">
    Over OAuth the assistant acts as you, so it only sees what your role permits. With an API
    key it acts as the workspace and sees everything. If a prompt returns less than you
    expected, check which credential the connection uses. See
    [Authentication](/mcp/authentication).
  </Accordion>
</AccordionGroup>
