We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vfa-khuongdv/mcp-chatwork'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•829 B
.PHONY: install build start test clean help publish
# Default target
all: install build
install:
npm install
build:
npm run build
start:
npm start
test:
npm test
test-coverage:
npm run test:coverage
clean:
rm -rf dist node_modules
reinstall: clean install
publish: build
npm publish --access public
help:
@echo "Available targets:"
@echo " make install - Install dependencies"
@echo " make build - Build the project"
@echo " make start - Run the project"
@echo " make test - Run tests"
@echo " make test-coverage - Run tests with coverage"
@echo " make clean - Remove build artifacts and node_modules"
@echo " make reinstall - Clean and reinstall dependencies"
@echo " make publish - Build and publish to npm"
@echo " make all - Install and build (default)"