Loading...
SciTeX dotfiles

Ask anything about Scientific Research

Console
Ask anything about Scientific Research. I can take actions: stats, plots, literature, and your current work.
Files visitor-006/dotfiles
Viewer Viewer
No file selected Open a file from the Files tab to view it here
No commits yet
Not committed History
Blame
02_mcp_tools.sh • 492 bytes
#!/bin/bash
# -*- coding: utf-8 -*-
# Timestamp: 2026-02-18
# File: examples/02_mcp_tools.sh

# Example: Using MCP tools via CLI
# Usage: ./examples/02_mcp_tools.sh

set -e

echo "=== Example 02: MCP Tools ==="

# Show available tools
echo "1. List MCP tools:"
scitex-writer mcp list-tools

# Check MCP setup
echo "2. Doctor check:"
scitex-writer mcp doctor

# Show Claude Desktop config
echo "3. Claude Desktop installation guide:"
scitex-writer mcp installation

echo "=== Done ==="

# EOF