← MCP Server with OpenAI-Compatible Model Support
db5284ff36f81d9473a1a233bec501680aaec4f2source_git · agaonker/mcp-apps · current release
Observed 2026-08-25T16:34:32.015Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"logging": {},
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
echoReturns the provided message back. Useful for testing the connection.Input schema{
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
generate_textGenerate text using the configured OpenAI-compatible model.Input schema{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"minLength": 1
},
"model": {
"type": "string"
},
"temperature": {
"type": "number",
"minimum": 0,
"maximum": 2
},
"maxTokens": {
"type": "integer",
"exclusiveMinimum": 0
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
list_directoryLists the files and folders at a path on the machine running this server.Input schema{
"type": "object",
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
list_modelsReturns the currently configured model metadata for the MCP server.Input schema{
"type": "object",
"properties": {
"details": {
"type": "boolean",
"default": true
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
read_fileReads and returns the text contents of a file on the machine running this server.Input schema{
"type": "object",
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
server_healthChecks whether the MCP server and provider configuration are ready.Input schema{
"type": "object",
"properties": {
"includeConfig": {
"type": "boolean",
"default": true
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |