things3-cli 1.0.0

CLI tool for Things 3 with integrated MCP server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! MCP server tests organized into logical modules
//!
//! This module provides comprehensive testing for the MCP server implementation,
//! organized by functionality: tools, prompts, resources, and error handling.

#![cfg(feature = "mcp-server")]

pub(crate) mod common;
mod error_tests;
mod prompt_tests;
mod resource_tests;
mod tool_tests;