Returns "Hello, World!" as a simple test endpoint for validating API connectivity and MCP tool integration. Call via GET /v1/misc/hello-world or through MCP in Cursor and other AI editors. Perfect for debugging connection issues or onboarding new developers. Returns plain text response with 200 status code.
curl "https://tinyfn.io/v1/misc/hello-world" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/misc/hello-world', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/misc/hello-world',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's miscellaneous tools:
{
"mcpServers": {
"tinyfn-misc": {
"url": "https://tinyfn.io/mcp/misc",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Returns the plain text string 'Hello, World!' with a 200 HTTP status code.
Use the Hello World tool first - it's the simplest way to verify your MCP setup is configured correctly before trying more complex tools.
Both return identical 'Hello, World!' output. REST requires direct HTTP requests while MCP integrates natively into AI editors for seamless tool usage.
No, it's parameter-free by design. Simply call GET /v1/misc/hello-world or invoke the MCP tool directly.
Health checks, API monitoring, connection testing, and onboarding new team members to your TinyFn integration workflow.