We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/datagen24/World-Anvil-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.readthedocs.yaml•1.01 kB
# Read the Docs configuration file for World Anvil MCP Server
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
# Build documentation in the docs/source directory with Sphinx
build:
os: ubuntu-22.04
tools:
python: "3.11"
jobs:
post_checkout:
# Cancel building pull requests when there aren't changes in the docs directory
# If there are no changes (git diff exits with 0) we force the command to return with 183
# This is a special exit code on Read the Docs that will cancel the build immediately.
- |
if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/main -- docs/ .readthedocs.yaml pyproject.toml;
then
exit 183;
fi
# Sphinx configuration
sphinx:
configuration: docs/source/conf.py
fail_on_warning: false
# Python configuration
python:
install:
- method: pip
path: .
extra_requirements:
- docs
# Build formats
formats:
- pdf
- epub