indiekit-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@indiekit-mcpinspect the schema of my database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@indiekitai/mcp
Unified MCP server that auto-discovers and exposes all IndieKit tools through a single endpoint.
One config, all tools.
Quick Setup
Claude Desktop / Cursor:
{
"mcpServers": {
"indiekit": {
"command": "npx",
"args": ["@indiekitai/mcp"]
}
}
}Or generate the config:
npx @indiekitai/mcp --configRelated MCP server: mcp-cli-catalog
Available Tools (16)
π PostgreSQL
Tool | Package | Description |
| @indiekitai/pg-inspect | Inspect database schema β tables, columns, indexes, constraints |
| @indiekitai/pg-diff | Compare two databases and return migration SQL |
| @indiekitai/pg-diff | Human-readable diff summary |
| @indiekitai/pg-top | Current pg_stat_activity |
| @indiekitai/pg-top | Database statistics (connections, cache hit, TPS) |
| @indiekitai/pg-top | Current lock information |
β‘ Development
Tool | Package | Description |
| @indiekitai/just | List justfile recipes |
| @indiekitai/just | Execute a justfile recipe |
| @indiekitai/just | Parse justfile to AST |
| @indiekitai/throttled | Check rate limit status |
| @indiekitai/throttled | Get rate limit state without consuming quota |
| @indiekitai/env-audit | Scan project for environment variables |
| @indiekitai/llm-context | Count tokens for LLM context estimation |
π¨ Terminal UI
Tool | Package | Description |
| @indiekitai/lipgloss | Render styled terminal text |
| @indiekitai/lipgloss | Join text blocks horizontally |
| @indiekitai/lipgloss | Join text blocks vertically |
CLI
npx @indiekitai/mcp # Start MCP server (stdio)
npx @indiekitai/mcp --list # List all tools
npx @indiekitai/mcp --config # Claude Desktop config JSONAuto-Discovery
The server automatically discovers additional tools from installed @indiekitai/* packages that export MCP tool definitions:
Scans
node_modules/@indiekitai/*/package.jsonChecks for
exports["./mcp"]orindiekit.mcp: truein package.jsonDynamically imports and registers discovered tools
Adding Tools to Your Package
Export a getTools() function from your package's MCP module:
// src/mcp.ts
import type { ToolDefinition } from '@indiekitai/mcp';
export function getTools(): ToolDefinition[] {
return [{
name: 'my_tool',
description: 'Does something useful',
package: '@indiekitai/my-package',
mode: 'direct',
inputSchema: {
type: 'object',
properties: {
input: { type: 'string', description: 'Input value' },
},
required: ['input'],
},
handler: async (params) => {
// Tool implementation
return { result: 'done' };
},
}];
}Then add to your package.json:
{
"exports": {
"./mcp": "./dist/mcp.js"
}
}License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Flicense-qualityBmaintenanceA unified MCP server with composable tools for GitHub operations, file management, shell execution, kanban boards, Discord messaging, and package management. Features role-based security, HTTP/stdio transports, and a web-based development UI.
- Alicense-qualityDmaintenanceAn MCP server that publishes CLI tools on your machine for discoverability by LLMs81MIT
- Alicense-qualityFmaintenanceAn MCP server that enables programmatic management and monitoring of development servers through a unified interface and interactive TUI. It provides tools for process control, log streaming, and experimental browser automation via Playwright.1MIT
Related MCP Connectors
MCP server for interacting with the Supabase platform
MCP server for managing Prisma Postgres.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/indiekitai/indiekit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server