Perplexity MCP Server
by PoliTwit1984
search
Search Perplexity for coding help
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | No | Code snippet to analyze (optional) | |
language | No | Programming language of the code snippet (optional) | auto |
query | Yes | The error or coding question to analyze |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Code snippet to analyze (optional)",
"type": "string"
},
"language": {
"default": "auto",
"description": "Programming language of the code snippet (optional)",
"type": "string"
},
"query": {
"description": "The error or coding question to analyze",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}