* basic ticket uploading * take project_id in request params instead of env * add an endpoint to list all available projects * add mcp server bin to npx * add missing scripts to package and publish to npm * fix rmcp version * Use utils::asset_dir * Don't run migrations or create DB from MCP * a fix for the first dev run when no frontend/dist/index.html exists * Add more MCP endpoints (#8) * add new endpoints for project and task management * add simpler more focused endpoints to improve agent understanding on this MCP * improve test script * combine npm binaries and allow passing --mcp as an arg * cargo fmt * fixes after rebase * clippy fixes * Script tweaks --------- Co-authored-by: couscous <couscous@runner.com> Co-authored-by: anastasiya1155 <anastasiya1155@gmail.com> Co-authored-by: Louis Knight-Webb <louis@bloop.ai> Co-authored-by: Anastasiia Solop <35258279+anastasiya1155@users.noreply.github.com>
45 lines
975 B
Bash
Executable File
45 lines
975 B
Bash
Executable File
#!/bin/bash
|
|
# test-npm-package.sh
|
|
|
|
set -e
|
|
|
|
echo "🧪 Testing NPM package locally..."
|
|
|
|
# Build the package first
|
|
./build-npm-package.sh
|
|
|
|
cd npx-cli
|
|
|
|
echo "📋 Checking files to be included..."
|
|
npm pack --dry-run
|
|
|
|
echo "📦 Creating package tarball..."
|
|
npm pack
|
|
|
|
echo "🔗 Installing globally from tarball..."
|
|
TARBALL=$(ls vibe-kanban-*.tgz | head -n1)
|
|
npm install -g "./$TARBALL"
|
|
|
|
echo "🧪 Testing main command..."
|
|
vibe-kanban &
|
|
MAIN_PID=$!
|
|
sleep 3
|
|
kill $MAIN_PID 2>/dev/null || true
|
|
wait $MAIN_PID 2>/dev/null || true
|
|
echo "✅ Main app started successfully"
|
|
|
|
echo "🧪 Testing MCP command with complete handshake..."
|
|
|
|
node ../mcp_test.js
|
|
|
|
echo "🧹 Cleaning up..."
|
|
npm uninstall -g vibe-kanban
|
|
rm "$TARBALL"
|
|
|
|
echo "✅ NPM package test completed successfully!"
|
|
echo ""
|
|
echo "🎉 Your MCP server is working correctly!"
|
|
echo "📋 Next steps:"
|
|
echo " 1. cd npx-cli"
|
|
echo " 2. npm publish"
|
|
echo " 3. Users can then use: npx vibe-kanban --mcp with Claude Desktop" |