We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lucas-flatwhite/things-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
TESTING.md•1.03 KiB
# Testing Things MCP Server
This project includes a simple test script to verify the MCP server and its connection to Things 3.
## Prerequisites
- Node.js installed
- Things 3 running on macOS
- Project built (`npm run build`)
## Running the Test Script
A script is available at `scripts/test-client.js`. It does the following:
1. Starts the MCP server.
2. Lists all available tools.
3. Calls `get-projects` to fetch projects from Things (verifying AppleScript integration).
To run it:
```bash
node scripts/test-client.js
```
## Expected Output
You should see output similar to:
```
Starting server at: .../dist/index.js
...
--- Found 15 tools ---
- add-todo: ...
...
--- Testing "get-projects" (Read-Only) ---
...
Found 35 projects.
```
## Manual Testing
You can also use an MCP Inspector (like the one in Claude Desktop or separate tools) to connect to the server.
Configuration for MCP Clients:
```json
{
"mcpServers": {
"things-mcp": {
"command": "node",
"args": ["/path/to/things-mcp/dist/index.js"]
}
}
}
```