Simple echo utility that returns your input message unchanged. Useful for testing MCP connections in Cursor or Windsurf, debugging API workflows, or verifying agent communication. Call via `/v1/misc/echo` with any message parameter. Returns exactly what you send — no processing, no surprises.
curl "https://tinyfn.io/v1/misc/echo" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/misc/echo', {
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/echo',
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 your input message exactly as sent, with no modifications or processing. Perfect for testing connectivity and debugging.
Use the echo tool with any test message. If you get back exactly what you sent, your MCP setup in Cursor, Windsurf, or other editors is working correctly.
GET /v1/misc/echo with your message as a parameter. Returns JSON with your original message.
Yes, echo preserves all characters including emojis, Unicode symbols, and special formatting exactly as received.
Echo tests the full round-trip communication between your AI agent and TinyFn's servers, catching network issues that local printing wouldn't reveal.