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
Chat.swift•433 B
// Sources/iMessageMax/Models/Chat.swift
import Foundation
struct Chat: Codable {
let id: String // "chat123"
let guid: String?
let displayName: String?
let serviceName: String?
let participantCount: Int
let isGroup: Bool
let lastMessage: LastMessage?
struct LastMessage: Codable {
let text: String?
let ts: String // ISO timestamp
let fromMe: Bool
}
}