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

# Introduction

> Build AI-powered workforce automations with the NexSpace API

# NexSpace Developer Platform

NexSpace 365 is an enterprise workforce management platform serving healthcare,
hospitality, retail, manufacturing, and logistics organizations. The developer
platform lets you build integrations and AI agents that automate scheduling,
HR, payroll, credentials, and CRM workflows.

## What You Can Build

<CardGroup cols={2}>
  <Card title="AI Agents" icon="robot">
    Build agents that fill shifts, verify credentials, and run payroll through
    the Model Context Protocol (MCP) — the same protocol used by Claude Code,
    Cursor, and ChatGPT.
  </Card>

  <Card title="Custom Integrations" icon="plug">
    Connect NexSpace to your existing systems via REST API, webhooks, and
    SDKs. React to events like `shift_filled` or `credential_expired` in
    real time.
  </Card>

  <Card title="Workflow Automation" icon="gears">
    Use the CLI to script bulk operations — search staff, fill shifts,
    generate reports — from CI/CD pipelines or internal tools.
  </Card>

  <Card title="Marketplace Plugins" icon="store">
    Publish your integration to Claude Code, Cursor, ChatGPT, or Composio
    marketplaces for distribution to thousands of teams.
  </Card>
</CardGroup>

## Architecture

```mermaid theme={null}
flowchart LR
    Agents["AI Agents<br/>Claude · Cursor · ChatGPT"] --> MCP["MCP Server<br/>JSON-RPC 2.0 · 16 verbs"]
    MCP --> API["NexSpace API<br/>REST + Auth"]
    SDK["SDKs<br/>TypeScript · Python"] --> API
    CLI["CLI<br/>oclif"] --> API
    API -- "events pushed to your URL" --> WH["Webhooks<br/>outbound"]

    classDef primary fill:#2563EB,stroke:#1E3A8A,color:#F8FAFC;
    classDef accent fill:#38BDF8,stroke:#0EA5E9,color:#082F49;
    classDef neutral fill:#E2E8F0,stroke:#94A3B8,color:#0B1220;
    class API primary;
    class MCP accent;
    class Agents,SDK,CLI,WH neutral;
```

## Quick Links

<CardGroup cols={3}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get your first API call working in 5 minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    API keys, OAuth 2.1, scopes, and device-code flow.
  </Card>

  <Card title="MCP Protocol" icon="brain" href="/concepts/mcp">
    How AI agents discover and invoke NexSpace tools.
  </Card>
</CardGroup>
