-
Notifications
You must be signed in to change notification settings - Fork 0
Sweetmantech/myc 3651 migrate tool get artist socials #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sweetmantech
merged 14 commits into
main
from
sweetmantech/myc-3651-migrate-tool-get_artist_socials
Dec 6, 2025
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
871c626
refactor tool location to lib/mcp/tools
sweetmantech 1dd8569
Migrate tool - get_artist_socials
sweetmantech 5e89435
remove template tools
sweetmantech fcc88df
add types from mcp
sweetmantech 9affea8
simple types
sweetmantech 7f5b785
new import path
sweetmantech 205ce93
another test
sweetmantech cdad59e
KISS - mute typescript
sweetmantech e02cb10
Merge branch 'main' of github.com:Recoupable-com/Recoup-API into swee…
sweetmantech 31004e3
fix type errors in new tool file
sweetmantech 06d4bed
casting to keep response the same as current tool calls.
sweetmantech 9df8817
DRY principle - inputSchema: artistSocialsQuerySchema
sweetmantech 78ca149
update description to include values returned.
sweetmantech 5c4781b
remove reference to x402-mcp
sweetmantech File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; | ||
| import { registerGetRandomNumberTool } from "./registerGetRandomNumberTool"; | ||
| import { registerGetArtistSocialsTool } from "./registerGetArtistSocialsTool"; | ||
|
|
||
| /** | ||
| * Registers all MCP tools on the server. | ||
| * Add new tools here to automatically register them. | ||
| * | ||
| * @param server - The MCP server instance to register tools on. | ||
| */ | ||
| export const registerAllTools = (server: McpServer): void => { | ||
| registerGetRandomNumberTool(server); | ||
| registerGetArtistSocialsTool(server); | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; | ||
| import { getArtistSocials } from "@/lib/artist/getArtistSocials"; | ||
| import { | ||
| ArtistSocialsQuery, | ||
| artistSocialsQuerySchema, | ||
| } from "@/lib/artist/validateArtistSocialsQuery"; | ||
| import { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; | ||
|
|
||
| /** | ||
| * Registers the "get_artist_socials" tool on the MCP server. | ||
| * Retrieves all social profiles associated with an artist account. | ||
| * | ||
| * @param server - The MCP server instance to register the tool on. | ||
| */ | ||
| export function registerGetArtistSocialsTool(server: McpServer): void { | ||
| server.registerTool( | ||
| "get_artist_socials", | ||
| { | ||
| description: | ||
| "Retrieve all socials (handle, avatar, profile url, bio, follower count, following count) associated with an artist.", | ||
| inputSchema: artistSocialsQuerySchema, | ||
| }, | ||
| async (args: ArtistSocialsQuery) => { | ||
| const result = await getArtistSocials(args); | ||
| return result as unknown as CallToolResult; | ||
| }, | ||
| ); | ||
| } | ||
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.