We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RMRanjit/mcp-Archimate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
relationship.ts•260 B
import { RelationshipType } from '../models/archimate.js';
export class Relationship {
constructor(
public readonly id: string,
public readonly source: string,
public readonly target: string,
public readonly type: RelationshipType,
) {}
}