spala_help
Explain what Spala is and how agents should start.
Parameters
No parameters.
Raw schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}by spala
Discovery, OAuth handoff, and project MCP routing for Spala backend projects.
Discovery, OAuth handoff, and project MCP routing for Spala backend projects.
Captured live from the server via tools/list.
Explain what Spala is and how agents should start.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}First call for agents connected to mcp.spala.ai public MCP.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}Return machine-readable public MCP vs project MCP routing.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}Search Spala agent-facing docs index.
| query | string | optional | |
| limit | integer | optional |
{
"type": "object",
"properties": {
"query": {
"type": "string",
"default": ""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"default": 5
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}List Spala backend templates for agent planning.
| query | string | optional | |
| limit | integer | optional |
{
"type": "object",
"properties": {
"query": {
"type": "string",
"default": ""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 20
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}List Spala addons/integrations for backend planning.
| query | string | optional | |
| limit | integer | optional |
{
"type": "object",
"properties": {
"query": {
"type": "string",
"default": ""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 20
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}AUTH REQUIRED. Read-only. List projects available to the Spala platform user. If unauthenticated, clients should follow the 401 WWW-Authenticate OAuth metadata and retry with Authorization: Bearer <token>.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}AUTH REQUIRED. DRY-RUN ONLY. Effect: no-op. Returns a simulated project shape and does not create a real Spala project in this deployment.
| name | string | required | |
| template | string | optional | |
| description | string | optional |
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"template": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}AUTH REQUIRED. Read-only. Select a project and return the exact project mcpUrl to use for backend work. Never derive this URL from project names, slugs, or api.spala.ai patterns.
| projectId | string | optional | |
| slug | string | optional |
{
"type": "object",
"properties": {
"projectId": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}AUTH REQUIRED. Read-only. Return the selected project MCP install manifest shape: schemaVersion, name, project, mcpUrl, installManifestUrl, transport, and auth.
| projectId | string | optional | |
| slug | string | optional |
{
"type": "object",
"properties": {
"projectId": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}AUTH REQUIRED. Read-only. Return safe public context for selected project.
| projectId | string | optional | |
| slug | string | optional |
{
"type": "object",
"properties": {
"projectId": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}README not available yet.
Hosted server - connect over the network, no local install.
https://mcp.spala.ai/mcpclaude_desktop_config.json
{
"mcpServers": {
"public-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.spala.ai/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.