/
/Smithery Platform API
ChangesDocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Updated on 2026-05-30
agents2
connect5
connect.mcp1
namespaces4
servers31
  • getGet a server by namespace (namespace-only servers)
  • putCreate a namespace-only server
  • getList deployments
  • putDeploy an MCP server
  • getGet deployment details
  • getStream deployment logs via Server-Sent Events
  • postResume a paused deployment workflow (e.g., after OAuth authorization)
  • getGet runtime logs for a server
  • getList secrets for a server
  • putAdd or update a secret
  • deleteDelete a secret
  • getGet server repository connection
  • putCreate or update server repository connection
  • deleteDelete server repository connection
  • getList deployments
  • putDeploy an MCP server
  • getGet deployment details
  • getStream deployment logs via Server-Sent Events
  • postResume a paused deployment workflow (e.g., after OAuth authorization)
  • getGet runtime logs for a server
  • getList secrets for a server
  • putAdd or update a secret
  • deleteDelete a secret
  • getGet server repository connection
  • putCreate or update server repository connection
  • deleteDelete server repository connection
  • getDownload server bundle
  • getGet a server by namespace and server name
  • putCreate a server
  • deleteDelete a server
  • getList all servers
skills10
tokens1
uplink1
  • getHealth check
servers

List secrets for a server

Fetch secret names for the server. Values are not returned.

get/servers/{namespace}/{server}/secrets

Path parameters

namespacestring required
serverstring required

Response

Secrets listed

namestring required
typestring required

Example response

[
  {
    "name": "API_KEY",
    "type": "secret_text"
  }
]

Changes