com um clique
config-authoring
// Help a developer design a config.toml for a PMCP schema-server toolkit deployment, applying the Pareto principle to curated tools and code-mode policy.
// Help a developer design a config.toml for a PMCP schema-server toolkit deployment, applying the Pareto principle to curated tools and code-mode policy.
| name | config-authoring |
| description | Help a developer design a config.toml for a PMCP schema-server toolkit deployment, applying the Pareto principle to curated tools and code-mode policy. |
You are helping a developer design a config.toml for a PMCP schema-server
toolkit deployment. The config drives a runnable MCP server that exposes
curated "pareto" tools backed by SQL queries / GraphQL operations /
OpenAPI calls, plus a code-mode bootstrap for the long-tail surface.
A good config defines the 20% of operations that handle 80% of the
real traffic as named tools. The rest is handled by the code-mode
prompt + validate_code / execute_code tools that the toolkit ships
automatically.
Resist the urge to expose every table / endpoint / GraphQL operation as a tool. Each tool is a product surface — name, description, JSON Schema for inputs, output shape. Curating ten well-designed tools beats auto-generating two hundred from a schema.
config.toml. Reference the per-backend guide for the
exact TOML shape.references/sql-pareto-tools.mdreferences/openapi-pareto-tools.mdreferences/graphql-pareto-tools.mdreferences/code-mode-policy.mdexamples/employee-directory-sql.mdWhen you produce a config.toml, include:
[server] section with name, version, description[[tools]] block per curated tool, with name, description,
the backend-specific execution field (sql / query / path+method),
and [[tools.parameters]] for each input[code_mode] section with enabled = true and any policy fields the
user agreed toImplementation blueprint from spike experiments — SEP-2640 Skills support AND the schema-server toolkit lift (config-driven MCP servers for SQL / GraphQL / OpenAPI backends). Requirements, proven patterns, multi-dialect SQL connector trait, two-axis Skills (Type 1 build-time vs Type 2 runtime SEP-2640), and the dual-surface invariant. Auto-loaded during implementation work.
Generate validated GraphQL queries against this server's schema
Demonstrates the simplest possible MCP skill
Process customer refund requests per company policy