We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/daniel-lxs/mcp-perplexity'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Changelog
All notable changes to this project will be documented in this file.
{% for version, release in context.history.released.items() %}
## {{ version.as_tag() }} ({{ release.tagged_date.strftime("%Y-%m-%d") }})
{% for type_, commits in release["elements"] | dictsort %}
{% if type_ != "unknown" %}
### {% if type_ == "feat" %}π Features{% elif type_ == "fix" %}π Bug Fixes{% elif type_ == "perf" %}β‘ Performance Improvements{% elif type_ == "docs" %}π Documentation{% elif type_ == "style" %}π
Code Style{% elif type_ == "refactor" %}π¨ Code Refactoring{% elif type_ == "test" %}π§ͺ Tests{% elif type_ == "build" %}π οΈ Build System{% elif type_ == "ci" %}π Continuous Integration{% elif type_ == "chore" %}π§Ή Maintenance{% else %}{{ type_ | title }}{% endif %}
{% for commit in commits %}
* {{ commit.descriptions[0] | capitalize }} ([`{{ commit.hexsha[:7] }}`]({{ commit.hexsha | commit_hash_url }})){% if commit.breaking %} **BREAKING CHANGE** {% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}