We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kastalien-Research/thoughtbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Simulate MCP tool input
INPUT='{
"tool_name": "mcp__thoughtbox__thoughtbox_gateway",
"tool_input": {
"operation": "thought",
"args": {
"thought": "Test thought",
"thoughtNumber": 1
}
},
"tool_output": {
"content": [
{
"type": "text",
"text": "Thought recorded"
}
]
}
}'
echo "Testing post_tool_use.sh with MCP input..."
echo "$INPUT" | ./.claude/hooks/post_tool_use.sh
echo "Exit code: $?"