indiekit-mcp
A unified MCP server that auto-discovers and exposes all IndieKit tools (PostgreSQL, development, terminal UI) through a single endpoint.
README
@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 --config
Available Tools (16)
π PostgreSQL
| Tool | Package | Description |
|---|---|---|
pg_inspect_schema |
@indiekitai/pg-inspect | Inspect database schema β tables, columns, indexes, constraints |
pg_diff_schemas |
@indiekitai/pg-diff | Compare two databases and return migration SQL |
pg_diff_summary |
@indiekitai/pg-diff | Human-readable diff summary |
pg_top_activity |
@indiekitai/pg-top | Current pg_stat_activity |
pg_top_stats |
@indiekitai/pg-top | Database statistics (connections, cache hit, TPS) |
pg_top_locks |
@indiekitai/pg-top | Current lock information |
β‘ Development
| Tool | Package | Description |
|---|---|---|
just_list_recipes |
@indiekitai/just | List justfile recipes |
just_run_recipe |
@indiekitai/just | Execute a justfile recipe |
just_parse_justfile |
@indiekitai/just | Parse justfile to AST |
throttled_check_rate |
@indiekitai/throttled | Check rate limit status |
throttled_get_status |
@indiekitai/throttled | Get rate limit state without consuming quota |
env_audit_scan |
@indiekitai/env-audit | Scan project for environment variables |
llm_context_scan |
@indiekitai/llm-context | Count tokens for LLM context estimation |
π¨ Terminal UI
| Tool | Package | Description |
|---|---|---|
lipgloss_style_render |
@indiekitai/lipgloss | Render styled terminal text |
lipgloss_join_horizontal |
@indiekitai/lipgloss | Join text blocks horizontally |
lipgloss_join_vertical |
@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 JSON
Auto-Discovery
The server automatically discovers additional tools from installed @indiekitai/* packages that export MCP tool definitions:
- Scans
node_modules/@indiekitai/*/package.json - Checks for
exports["./mcp"]orindiekit.mcp: truein package.json - Dynamically 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.