We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/helixml/kodit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package snippet
import (
"context"
)
// CommitIndexStore defines operations for commit index persistence.
type CommitIndexStore interface {
// Get returns a commit index by SHA.
Get(ctx context.Context, commitSHA string) (CommitIndex, error)
// Save persists a commit index.
Save(ctx context.Context, index CommitIndex) error
// Delete removes a commit index.
Delete(ctx context.Context, commitSHA string) error
// Exists checks if a commit index exists.
Exists(ctx context.Context, commitSHA string) (bool, error)
}