feat(mcp): add statbotics-mcp server - #409
Draft
bc3tech wants to merge 4 commits into
Draft
Conversation
Adds a new top-level mcp/ package providing a FastMCP-based MCP server that wraps the public Statbotics REST API at https://api.statbotics.io/v3. - 14 tools mirroring the statbotics Python client 1:1 - stdio (default) and streamable-HTTP transports - Dockerfile + .dockerignore for container-based local execution - Tests, README with client config snippets (Claude Desktop, VS Code, Cursor, GitHub Copilot CLI, Docker), and CLAUDE.md guide Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
@bc3tech is attempting to deploy a commit to the avgupta456's projects Team on Vercel. A member of the Team first needs to authorize it. |
FastMCP's HTTP transport serves concurrent requests; the unguarded if _client is None check could let two threads race and instantiate two clients (one without the STATBOTICS_API_URL override applied). Use double-checked locking with threading.Lock. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Project516
suggested changes
Aug 14, 2026
Project516
left a comment
There was a problem hiding this comment.
can you update to mcp 2026-07-28? https://modelcontextprotocol.io/specification/2026-07-28
| @@ -0,0 +1,49 @@ | |||
| --- | |||
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds a new top-level mcp/ package — a FastMCP-based MCP server wrapping the public Statbotics REST API at https://api.statbotics.io/v3.
Highlights
Commits