Skip to main content
Glama

Agent Knowledge MCP

Makefileโ€ข1.17 kB
# Makefile for AgentKnowledgeMCP .PHONY: help dev test build clean deploy install # Default target help: @echo "Available commands:" @echo " dev - Start development server" @echo " test - Run all tests" @echo " build - Build package for distribution" @echo " clean - Clean build artifacts" @echo " deploy - Deploy to PyPI" @echo " install - Install in development mode" # Development server dev: @echo "๐Ÿš€ Starting development server..." python src/server.py # Run tests test: @echo "๐Ÿงช Running tests..." python tests/test_validation.py python tests/test_strict_validation.py python tests/demo_config_management.py # Build package build: @echo "๐Ÿ“ฆ Building package..." python -m build # Clean build artifacts clean: @echo "๐Ÿงน Cleaning build artifacts..." rm -rf dist/ rm -rf build/ rm -rf *.egg-info/ find . -type d -name __pycache__ -exec rm -rf {} + find . -type f -name "*.pyc" -delete # Deploy to PyPI deploy: build @echo "๐Ÿš€ Deploying to PyPI..." python -m twine upload dist/* --repository pypi # Install in development mode install: @echo "๐Ÿ“ฅ Installing in development mode..." pip install -e .

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/itshare4u/AgentKnowledgeMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server