Ruft Organisationsdetails für die Organisation des authentifizierten Benutzers ab.
Tool Name
get_organization_info
Beschreibung
Das get_organization_info Tool gibt umfassende Informationen über die Organisation zurück, der der
aktuelle Benutzer angehört. Dies umfasst Basis-Informationen, Firmendaten, Kontaktdaten, Adresse
sowie die Rolle des Benutzers in der Organisation.
Parameter
| Parameter | Typ | Required | Beschreibung |
|---|---|---|---|
| (keine) | - | - | Dieses Tool benötigt keine Parameter |
Beispiel Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_organization_info",
"arguments": {}
},
"id": 1
}Beispiel Response
{
"jsonrpc": "2.0",
"result": {
"content": [
{
"type": "text",
"text": "{\"id\":\"org_abc123\",\"name\":\"Meine Firma\",\"slug\":\"meine-firma\",\"description\":\"Eine Beschreibung der Organisation\",\"logo\":\"https://example.com/logo.png\",\"banner\":\"https://example.com/banner.png\",\"websiteUrl\":\"https://meine-firma.de\",\"displayName\":\"Meine Firma GmbH\",\"industry\":\"technology\",\"companySize\":\"medium\",\"contactEmail\":\"info@meine-firma.de\",\"contactPhone\":\"+49 123 456789\",\"supportEmail\":\"support@meine-firma.de\",\"billingEmail\":\"billing@meine-firma.de\",\"addressStreet\":\"Hauptstraße 1\",\"addressCity\":\"Berlin\",\"addressPostalCode\":\"10115\",\"addressState\":\"Berlin\",\"addressCountry\":\"DE\",\"userRole\":\"admin\",\"createdAt\":\"2026-01-15T10:00:00Z\",\"updatedAt\":\"2026-02-10T14:30:00Z\"}"
}
]
},
"id": 1
}Rückgabewerte
Basis-Informationen
| Feld | Typ | Beschreibung |
|---|---|---|
| id | string | Eindeutige Organisations-ID |
| name | string | Anzeigename der Organisation |
| slug | string | URL-freundlicher Bezeichner |
| description | string | null | Optionale Beschreibung |
| websiteUrl | string | null | Website-URL der Organisation |
| logo | string | null | URL zum Organisationslogo |
| banner | string | null | URL zum Organisationsbanner |
Firmendaten
| Feld | Typ | Beschreibung |
|---|---|---|
| displayName | string | null | Anzeigename für öffentliche Seiten |
| industry | string | null | Branche (z.B. technology, finance) |
| companySize | string | null | Unternehmensgröße (startup, small, medium, large, enterprise) |
Kontaktdaten
| Feld | Typ | Beschreibung |
|---|---|---|
| contactEmail | string | null | Allgemeine Kontakt-E-Mail |
| contactPhone | string | null | Telefonnummer |
| supportEmail | string | null | Support-E-Mail |
| billingEmail | string | null | Rechnungs-E-Mail |
Adresse
| Feld | Typ | Beschreibung |
|---|---|---|
| addressStreet | string | null | Straße und Hausnummer |
| addressCity | string | null | Stadt |
| addressPostalCode | string | null | Postleitzahl |
| addressState | string | null | Bundesland/Region |
| addressCountry | string | null | Land (ISO-Code, z.B. DE) |
Metadaten
| Feld | Typ | Beschreibung |
|---|---|---|
| userRole | string | Rolle des Benutzers: owner, admin, member |
| createdAt | string | ISO 8601 Erstellungsdatum |
| updatedAt | string | ISO 8601 Aktualisierungsdatum |
Fehler
| Code | Bedeutung |
|---|---|
| -32003 | Nicht authentifiziert |
| -32004 | Benutzer ist kein Mitglied einer Organisation |