Skip to main content
Glama

ris_regierungsvorlagen

Search Austrian government bills (Regierungsvorlagen) to access legislative history and parliamentary materials. Find proposals by text, ministry, date, or other criteria for research and analysis.

Instructions

Search Austrian Government Bills (Regierungsvorlagen).

Use this tool for legislative history and parliamentary materials. Contains government proposals submitted to parliament.

Example queries:

  • suchworte="Klimaschutz" -> Full-text search in bills

  • einbringende_stelle="BMF (Bundesministerium für Finanzen)" -> Bills from Finance Ministry

  • beschlussdatum_von="2024-01-01", beschlussdatum_bis="2024-12-31" -> Bills from 2024

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
suchworteNoFull-text search terms
titelNoSearch in bill titles
beschlussdatum_vonNoDecision date from (YYYY-MM-DD)
beschlussdatum_bisNoDecision date to (YYYY-MM-DD)
einbringende_stelleNoFilter by submitting ministry
im_ris_seitNoFilter by time in RIS
sortierung_richtungNoSort direction
sortierung_spalteNoSort by column
seiteNoPage number (default: 1)
limitNoResults per page 10/20/50/100 (default: 20)
response_formatNo"markdown" (default) or "json"markdown

Implementation Reference

  • The handler function that processes arguments, validates them, prepares search parameters, and executes the search for Government Bills (Regierungsvorlagen).
    async (args) => {
      const {
        suchworte,
        titel,
        beschlussdatum_von,
        beschlussdatum_bis,
        einbringende_stelle,
        im_ris_seit,
        sortierung_richtung,
        sortierung_spalte,
        seite,
        limit,
        response_format,
      } = args;
    
      if (
        !hasAnyParam(args, [
          'suchworte',
          'titel',
          'beschlussdatum_von',
          'einbringende_stelle',
          'im_ris_seit',
        ])
      ) {
        return createValidationErrorResponse([
          'suchworte` für Volltextsuche',
          'titel` für Suche in Titeln',
          'beschlussdatum_von/bis` für Datumsfilter',
          'einbringende_stelle` für Ministerium',
          'im_ris_seit` für Zeitfilter',
        ]);
      }
    
      const params = buildBaseParams('RegV', limit, seite);
      addOptionalParams(params, [
        [suchworte, 'Suchworte'],
        [titel, 'Titel'],
        [beschlussdatum_von, 'BeschlussdatumVon'],
        [beschlussdatum_bis, 'BeschlussdatumBis'],
        [einbringende_stelle, 'EinbringendeStelle'],
        [im_ris_seit, 'ImRisSeit'],
        [sortierung_richtung, 'Sortierung.SortDirection'],
        [sortierung_spalte, 'Sortierung.SortedByColumn'],
      ]);
    
      return executeSearchTool(searchBundesrecht, params, response_format);
    },
  • Zod schema defining the input parameters for the 'ris_regierungsvorlagen' tool.
    {
      suchworte: z.string().max(1000).optional().describe('Full-text search terms'),
      titel: z.string().max(500).optional().describe('Search in bill titles'),
      beschlussdatum_von: DateSchema.optional().describe('Decision date from (YYYY-MM-DD)'),
      beschlussdatum_bis: DateSchema.optional().describe('Decision date to (YYYY-MM-DD)'),
      einbringende_stelle: z
        .enum([
          'BKA (Bundeskanzleramt)',
          'BMFFIM (Bundesministerin für Frauen, Familie, Integration und Medien im Bundeskanzleramt)',
          'BMEUV (Bundesministerin für EU und Verfassung im Bundeskanzleramt)',
          'BMKOES (Bundesministerium für Kunst, Kultur, öffentlichen Dienst und Sport)',
          'BMEIA (Bundesministerium für europäische und internationale Angelegenheiten)',
          'BMAW (Bundesministerium für Arbeit und Wirtschaft)',
          'BMBWF (Bundesministerium für Bildung, Wissenschaft und Forschung)',
          'BMF (Bundesministerium für Finanzen)',
          'BMI (Bundesministerium für Inneres)',
          'BMJ (Bundesministerium für Justiz)',
          'BMK (Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie)',
          'BMLV (Bundesministerium für Landesverteidigung)',
          'BML (Bundesministerium für Land- und Forstwirtschaft, Regionen und Wasserwirtschaft)',
          'BMSGPK (Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz)',
        ])
        .optional()
        .describe('Filter by submitting ministry'),
      im_ris_seit: z
        .enum([
          'EinerWoche',
          'ZweiWochen',
          'EinemMonat',
          'DreiMonaten',
          'SechsMonaten',
          'EinemJahr',
        ])
        .optional()
        .describe('Filter by time in RIS'),
      sortierung_richtung: z
        .enum(['Ascending', 'Descending'])
        .optional()
        .describe('Sort direction'),
      sortierung_spalte: z
        .enum(['Kurztitel', 'EinbringendeStelle', 'Beschlussdatum'])
        .optional()
        .describe('Sort by column'),
      seite: z.number().default(1).describe('Page number (default: 1)'),
      limit: z.number().default(20).describe('Results per page 10/20/50/100 (default: 20)'),
      response_format: z
        .enum(['markdown', 'json'])
        .default('markdown')
        .describe('"markdown" (default) or "json"'),
    },
  • Function to register the 'ris_regierungsvorlagen' tool with the MCP server.
    export function registerRegierungsvorlagenTool(server: McpServer): void {
      server.tool(
        'ris_regierungsvorlagen',
        `Search Austrian Government Bills (Regierungsvorlagen).
    
    Use this tool for legislative history and parliamentary materials.
    Contains government proposals submitted to parliament.
    
    Example queries:
      - suchworte="Klimaschutz" -> Full-text search in bills
      - einbringende_stelle="BMF (Bundesministerium für Finanzen)" -> Bills from Finance Ministry
      - beschlussdatum_von="2024-01-01", beschlussdatum_bis="2024-12-31" -> Bills from 2024`,
        {
          suchworte: z.string().max(1000).optional().describe('Full-text search terms'),
          titel: z.string().max(500).optional().describe('Search in bill titles'),
          beschlussdatum_von: DateSchema.optional().describe('Decision date from (YYYY-MM-DD)'),
          beschlussdatum_bis: DateSchema.optional().describe('Decision date to (YYYY-MM-DD)'),
          einbringende_stelle: z
            .enum([
              'BKA (Bundeskanzleramt)',
              'BMFFIM (Bundesministerin für Frauen, Familie, Integration und Medien im Bundeskanzleramt)',
              'BMEUV (Bundesministerin für EU und Verfassung im Bundeskanzleramt)',
              'BMKOES (Bundesministerium für Kunst, Kultur, öffentlichen Dienst und Sport)',
              'BMEIA (Bundesministerium für europäische und internationale Angelegenheiten)',
              'BMAW (Bundesministerium für Arbeit und Wirtschaft)',
              'BMBWF (Bundesministerium für Bildung, Wissenschaft und Forschung)',
              'BMF (Bundesministerium für Finanzen)',
              'BMI (Bundesministerium für Inneres)',
              'BMJ (Bundesministerium für Justiz)',
              'BMK (Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie)',
              'BMLV (Bundesministerium für Landesverteidigung)',
              'BML (Bundesministerium für Land- und Forstwirtschaft, Regionen und Wasserwirtschaft)',
              'BMSGPK (Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz)',
            ])
            .optional()
            .describe('Filter by submitting ministry'),
          im_ris_seit: z
            .enum([
              'EinerWoche',
              'ZweiWochen',
              'EinemMonat',
              'DreiMonaten',
              'SechsMonaten',
              'EinemJahr',
            ])
            .optional()
            .describe('Filter by time in RIS'),
          sortierung_richtung: z
            .enum(['Ascending', 'Descending'])
            .optional()
            .describe('Sort direction'),
          sortierung_spalte: z
            .enum(['Kurztitel', 'EinbringendeStelle', 'Beschlussdatum'])
            .optional()
            .describe('Sort by column'),
          seite: z.number().default(1).describe('Page number (default: 1)'),
          limit: z.number().default(20).describe('Results per page 10/20/50/100 (default: 20)'),
          response_format: z
            .enum(['markdown', 'json'])
            .default('markdown')
            .describe('"markdown" (default) or "json"'),
        },
        async (args) => {
          const {
            suchworte,
            titel,
            beschlussdatum_von,
            beschlussdatum_bis,
            einbringende_stelle,
            im_ris_seit,
            sortierung_richtung,
            sortierung_spalte,
            seite,
            limit,
            response_format,
          } = args;
    
          if (
            !hasAnyParam(args, [
              'suchworte',
              'titel',
              'beschlussdatum_von',
              'einbringende_stelle',
              'im_ris_seit',
            ])
          ) {
            return createValidationErrorResponse([
              'suchworte` für Volltextsuche',
              'titel` für Suche in Titeln',
              'beschlussdatum_von/bis` für Datumsfilter',
              'einbringende_stelle` für Ministerium',
              'im_ris_seit` für Zeitfilter',
            ]);
          }
    
          const params = buildBaseParams('RegV', limit, seite);
          addOptionalParams(params, [
            [suchworte, 'Suchworte'],
            [titel, 'Titel'],
            [beschlussdatum_von, 'BeschlussdatumVon'],
            [beschlussdatum_bis, 'BeschlussdatumBis'],
            [einbringende_stelle, 'EinbringendeStelle'],
            [im_ris_seit, 'ImRisSeit'],
            [sortierung_richtung, 'Sortierung.SortDirection'],
            [sortierung_spalte, 'Sortierung.SortedByColumn'],
          ]);
    
          return executeSearchTool(searchBundesrecht, params, response_format);
        },
      );
    }
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It establishes this as a search tool (implied read-only) and provides example queries that demonstrate usage patterns. However, it doesn't disclose important behavioral traits like rate limits, authentication requirements, pagination behavior beyond the parameters, or what the search results actually contain and look like.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly structured and concise: a clear purpose statement, usage guidance, and concrete examples. Every sentence earns its place, with the examples being particularly valuable for understanding practical application. The information is front-loaded with the most important details first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 11 parameters, 100% schema coverage, and no output schema, the description provides adequate but incomplete context. It explains the tool's domain and gives helpful examples, but doesn't describe the return format, result structure, or what fields are included in search results. The examples compensate somewhat, but more complete behavioral context would be beneficial given the parameter complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents all 11 parameters. The description provides example queries that illustrate how to use three parameters (suchworte, einbringende_stelle, beschlussdatum_von/bis) in practical combinations, adding some semantic context beyond the schema. However, it doesn't explain the remaining 8 parameters or provide broader parameter usage guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Search Austrian Government Bills (Regierungsvorlagen)' with the specific resource identified. It distinguishes this tool from siblings by specifying it's for 'legislative history and parliamentary materials' and 'government proposals submitted to parliament', which differentiates it from other RIS tools like ris_bundesrecht or ris_judikatur.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool: 'Use this tool for legislative history and parliamentary materials.' However, it doesn't explicitly state when NOT to use it or mention specific alternatives among the sibling tools, though the context implies it's specifically for government bills rather than other legal materials.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Honeyfield-Org/ris-mcp-ts'

If you have feedback or need assistance with the MCP directory API, please join our Discord server