Skip to main content
Glama

m9k_unignore_project

Remove a project from the ignore list to resume indexing in future sessions. Previously purged sessions require re-indexation separately.

Instructions

Remove a project from the ignore list. Future sessions will be indexed again. Previously purged sessions are NOT restored (requires backfill re-indexation).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectYesProject path to unignore

Implementation Reference

  • The MCP tool registration and handler implementation for 'm9k_unignore_project'.
    server.registerTool(
      'm9k_unignore_project',
      {
        description:
          'Remove a project from the ignore list. Future sessions will be indexed again. ' +
          'Previously purged sessions are NOT restored (requires backfill re-indexation).',
        inputSchema: {
          project: z.string().describe('Project path to unignore'),
        },
        annotations: {
          readOnlyHint: false,
          destructiveHint: false,
          idempotentHint: true,
          openWorldHint: false,
        },
      },
      async ({ project }) => {
        unignoreProject(ctx.db, project);
    
        return {
          content: [
            {
              type: 'text' as const,
              text: JSON.stringify({
                unignored: true,
                project,
              }),
            },
          ],
        };
      },
    );
  • Database helper function that removes a project from the ignore list.
    export function unignoreProject(db: Database.Database, project: string): void {
      db.prepare('DELETE FROM ignored_projects WHERE project = ?').run(project);
    }

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/louis49/melchizedek'

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