We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juspay/juspay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
rag_tool.py•409 B
from pydantic import BaseModel, Field
from typing import Optional
class JuspayRagQueryPayload(BaseModel):
"""
Payload schema for RAG query tool.
"""
query: str = Field(
..., description="The question to ask the RAG system", min_length=1
)
similarity_top_k: Optional[int] = Field(
default=20, description="Number of similar documents to retrieve", ge=1, le=100
)