@totalaudiopromo/tap-mcp 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @total-audio/tap-mcp
1
+ # @totalaudiopromo/tap-mcp
2
2
 
3
3
  MCP server for [Total Audio Promo](https://totalaudiopromo.com) -- the first music PR tool with programmatic access.
4
4
 
5
- Exposes 10 tools and 3 resources via the [Model Context Protocol](https://modelcontextprotocol.io), giving AI agents full access to the music PR campaign lifecycle.
5
+ Exposes 14 tools and 3 resources via the [Model Context Protocol](https://modelcontextprotocol.io), giving AI agents full access to the music PR campaign lifecycle.
6
6
 
7
7
  ## Tools
8
8
 
@@ -36,7 +36,7 @@ Add to `.claude/settings.json`:
36
36
  "mcpServers": {
37
37
  "tap": {
38
38
  "command": "npx",
39
- "args": ["@total-audio/tap-mcp"],
39
+ "args": ["@totalaudiopromo/tap-mcp"],
40
40
  "env": {
41
41
  "TAP_SUPABASE_URL": "your-supabase-url",
42
42
  "TAP_SUPABASE_KEY": "your-service-role-key"
package/dist/index.js CHANGED
@@ -856,7 +856,7 @@ function registerResources(server2) {
856
856
  server2.resource("tap-artists", "tap://artists", async () => {
857
857
  const supabase = getAdminClient();
858
858
  const wsId = getWorkspaceId();
859
- const { data, error } = await supabase.from("tap_artists").select("id, name, spotify_id, genres, created_at").eq("workspace_id", wsId).order("name", { ascending: true }).limit(100);
859
+ const { data, error } = await supabase.from("workspace_artists").select("id, name, spotify_id, genres, created_at").eq("workspace_id", wsId).order("name", { ascending: true }).limit(100);
860
860
  if (error) {
861
861
  return {
862
862
  contents: [
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@totalaudiopromo/tap-mcp",
3
- "version": "0.1.0",
3
+ "mcpName": "io.github.totalaudiopromo/tap-mcp",
4
+ "version": "0.1.1",
4
5
  "description": "MCP server for Total Audio Promo — music PR campaign management via Model Context Protocol. 10 tools + 3 resources for contacts, campaigns, pitches, and outcomes.",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",