test-data.json•3.06 kB
{
"read_only_tools": {
"get_subreddit_posts": [
{
"subreddit": "test",
"sort": "hot"
},
{
"subreddit": "programming",
"sort": "new"
},
{
"subreddit": "funny",
"sort": "top"
},
{
"subreddit": "AskReddit",
"sort": "hot"
},
{
"subreddit": "MachineLearning",
"sort": "new"
}
],
"search_reddit": [
{
"query": "python tutorial",
"subreddit": "learnprogramming"
},
{
"query": "machine learning",
"subreddit": "programming"
},
{
"query": "crypto news"
},
{
"query": "TypeScript",
"subreddit": "typescript"
},
{
"query": "AI tools"
}
],
"get_user_profile": [
{
"username": "spez"
},
{
"username": "gallowboob"
},
{
"username": "AutoModerator"
},
{
"username": "reddit"
},
{
"username": "AwkwardTension4482"
}
],
"get_subreddit_info": [
{
"subreddit": "programming"
},
{
"subreddit": "test"
},
{
"subreddit": "AskReddit"
},
{
"subreddit": "MachineLearning"
},
{
"subreddit": "funny"
}
],
"get_post_comments": [
{
"post_id": "1n1nlse",
"sort": "best"
},
{
"post_id": "1abc123",
"sort": "top"
},
{
"post_id": "1def456",
"sort": "new"
}
],
"get_trending_subreddits": [
{}
],
"get_cross_posts": [
{
"post_id": "1n1nlse"
},
{
"post_id": "1abc123"
},
{
"post_id": "1def456"
}
]
},
"test_scenarios": {
"content_discovery": [
"get_trending_subreddits",
"get_subreddit_info",
"get_subreddit_posts",
"search_reddit"
],
"user_exploration": [
"get_user_profile",
"get_post_comments",
"get_cross_posts"
],
"comprehensive_testing": [
"get_trending_subreddits",
"get_subreddit_info",
"get_subreddit_posts",
"get_user_profile",
"get_post_comments",
"search_reddit",
"get_cross_posts"
]
},
"mcp_inspector_commands": {
"initialize": {
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {},
"clientInfo": {
"name": "test-client",
"version": "1.0.0"
}
}
},
"list_tools": {
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
},
"example_tool_call": {
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "get_subreddit_posts",
"arguments": {
"subreddit": "test",
"sort": "hot",
"limit": 5
}
}
}
}
}