Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.12.3"
".": "0.13.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.13.0 (2025-12-19)

Full Changelog: [v0.12.3...v0.13.0](https://github.com/phoebe-bird/phoebe-node/compare/v0.12.3...v0.13.0)

### ⚠ BREAKING CHANGES

* **mcp:** remove deprecated tool schemes
* **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.

### Chores

* **mcp:** remove deprecated tool schemes ([d246e50](https://github.com/phoebe-bird/phoebe-node/commit/d246e50e7ab1626a11f1bcb1dc08a7151b7d6ea8))

## 0.12.3 (2025-12-18)

Full Changelog: [v0.12.2...v0.12.3](https://github.com/phoebe-bird/phoebe-node/compare/v0.12.2...v0.12.3)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phoebe-ebird",
"version": "0.12.3",
"version": "0.13.0",
"description": "The official TypeScript library for the Phoebe API",
"author": "Phoebe <sayornis.phoebe.apis@gmail.com>",
"types": "dist/index.d.ts",
Expand Down
319 changes: 13 additions & 306 deletions packages/mcp-server/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phoebe-ebird-mcp",
"version": "0.12.3",
"version": "0.13.0",
"description": "The official MCP Server for the Phoebe API",
"author": "Phoebe <sayornis.phoebe.apis@gmail.com>",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp-server/src/code-tool.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

import { Metadata, ToolCallResult, asTextContentResult } from './tools/types';
import { McpTool, Metadata, ToolCallResult, asTextContentResult } from './types';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { readEnv } from './server';
import { WorkerSuccess } from './code-tool-types';
Expand All @@ -13,7 +13,7 @@ import { WorkerSuccess } from './code-tool-types';
*
* @param endpoints - The endpoints to include in the list.
*/
export async function codeTool() {
export function codeTool(): McpTool {
const metadata: Metadata = { resource: 'all', operation: 'write', tags: [] };
const tool: Tool = {
name: 'execute',
Expand Down
Loading