We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyberpapiii/imessage-max'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Attachment.swift•345 B
// Sources/iMessageMax/Models/Attachment.swift
import Foundation
struct AttachmentInfo: Codable {
let id: String
let filename: String?
let mimeType: String?
let uti: String?
let totalBytes: Int?
let chat: String? // "chat123"
let from: String? // Short key
let ts: String? // ISO timestamp
}