MCP Server — {{ $mcpServer->name }}

Back to list
@if (session('status'))
{{ session('status') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
Server Details

Organization: @if($mcpServer->organization) {{ $mcpServer->organization->name }} @else Unknown @endif

DID: {{ $mcpServer->server_did }}

Endpoint: {{ $mcpServer->endpoint_url }}

Manifest: @if($mcpServer->manifest_url) {{ $mcpServer->manifest_url }} @else @endif

Trust URL: @if($mcpServer->trust_url) {{ $mcpServer->trust_url }} @else @endif

Country: {{ $mcpServer->country }}

Environment: {{ strtoupper($mcpServer->environment) }}

Contact email: {{ $mcpServer->contact_email ?: '—' }}

Tags: {{ $mcpServer->tags ?: '—' }}

Status: {{ $mcpServer->status }}

Description: {{ $mcpServer->description ?: '—' }}

{{-- Registry Sync --}}
ANS Registry Sync
@csrf

Status: @if($mcpServer->registry_sync_status === 'synced') synced @elseif($mcpServer->registry_sync_status === 'failed') failed @else {{ $mcpServer->registry_sync_status ?? 'pending' }} @endif

@if($mcpServer->registry_synced_at)

Last synced: {{ $mcpServer->registry_synced_at->toDayDateTimeString() }}

@endif @if($mcpServer->registry_sync_status === 'failed' && $mcpServer->registry_last_error)

Error: {{ $mcpServer->registry_last_error }}

@endif
Issued Credentials
@forelse($credentials as $vc) @empty @endforelse
Type Issued at Expires at Status Hosted URL Actions
{{ $vc->type_primary }} {{ optional($vc->issued_at)->toDayDateTimeString() }} {{ optional($vc->expires_at)->toDateString() }} @if($vc->status === 'active') active @elseif($vc->status === 'revoked') revoked @else {{ $vc->status }} @endif @if($vc->vc_uuid) Public alias @elseif($vc->storage_url) Portal link @else @endif View JSON @if($vc->vc_uuid) Open hosted URL @endif
No credentials yet.