---
agent_auth:
  skill: "https://ceptenakliye.com/auth.md"
  register_uri: "https://ceptenakliye.com/auth/register"
  identity_types_supported:
    - anonymous
  credential_types:
    - none
  claim_uri: "https://ceptenakliye.com/auth/claim"
  revocation_uri: "https://ceptenakliye.com/auth/revoke"
---

# auth.md

**Service:** Cepte Nakliye — `https://ceptenakliye.com`  
**Contact:** info@ceptenakliye.com

## Agent Auth

```json
{
  "agent_auth": {
    "skill": "https://ceptenakliye.com/auth.md",
    "register_uri": "https://ceptenakliye.com/auth/register",
    "identity_types_supported": ["anonymous"],
    "credential_types": ["none"],
    "claim_uri": "https://ceptenakliye.com/auth/claim",
    "revocation_uri": "https://ceptenakliye.com/auth/revoke"
  }
}
```

## Overview

Cepte Nakliye is a WhatsApp-based freight job listing platform for Turkey. No API key or OAuth token is required — the primary interface for agents is the public WhatsApp channel.

## Registration Methods

### Method 1: Anonymous (Public WhatsApp Channel)

No registration is required. Agents may interact directly via WhatsApp:

- **Endpoint:** `https://api.whatsapp.com/send?phone=905015045151`
- **Identity type:** `anonymous`
- **Credentials:** none

### Method 2: Formal OAuth Registration

For systems that require OAuth-based access:

1. Fetch Protected Resource Metadata: `GET /.well-known/oauth-protected-resource`
2. Fetch Authorization Server metadata: `GET /.well-known/oauth-authorization-server`
3. POST identity assertion to `register_uri`: `https://ceptenakliye.com/auth/register`
4. Complete claim ceremony at `claim_uri` if required: `https://ceptenakliye.com/auth/claim`

## Supported Identity Types

| Type | Description |
|------|-------------|
| `anonymous` | No identity verification required |

## Credential Usage

No credentials are issued or required for the public channel.

## Revocation

- **Revocation endpoint:** `https://ceptenakliye.com/auth/revoke`
- Not applicable for the anonymous public channel.

## Discovery Endpoints

| Resource | URL |
|----------|-----|
| Authorization Server | `/.well-known/oauth-authorization-server` |
| OpenID Configuration | `/.well-known/openid-configuration` |
| Protected Resource | `/.well-known/oauth-protected-resource` |
| Agent Skills | `/.well-known/agent-skills/index.json` |
| MCP Server Card | `/.well-known/mcp/server-card.json` |
| API Catalog | `/.well-known/api-catalog` |
