Skip to main content

hello-world

Greets the caller and returns their identity from the ECGrid backend.

Tool Name

connectivity_system_hello-world

Auth Level Required

Any

Parameters

ParameterTypeRequiredDescription
request.namestring | nullNoOptional display name; falls back to the caller's loginName. Max 256 characters.

Response

Structured JSON — greeting message, loginName, authLevel, networkId, mailboxId, serverTimeUtc.

{
"message": "Hello, Your Name, from ECGrid MCP server.",
"loginName": "your-login",
"authLevel": "NetworkUser",
"networkId": "47",
"mailboxId": "0",
"serverTimeUtc": "2026-07-06T14:00:00Z"
}

Response Fields

FieldDescription
messageGreeting confirming the name passed in (or your loginName)
loginNameYour ECGrid account login name
authLevelYour account's permission tier — see Authentication
networkIdThe ECGrid network your account belongs to
mailboxIdYour mailbox ID (0 = network-level account)
serverTimeUtcCurrent ECGrid server time in UTC

Example Call

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "connectivity_system_hello-world",
"arguments": {
"request": { "name": "Your Name" }
}
}
}

Example Prompts

  • Test the ECGrid MCP connection
  • What is my ECGrid auth level?
  • What network ID does ECGrid return for me?

See Also